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

Function syscall_timerfd_create

source/kernel/syscall.cpp:1595–1600  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1593}
1594
1595static U32 syscall_timerfd_create(CPU* cpu, U32 eipCount) {
1596 SYS_LOG1(SYSCALL_FILE, cpu, "timerfd_create clockid=%d flags=%X", ARG1, ARG2);
1597 U32 result = cpu->thread->process->timerfd_create(ARG1, ARG2);
1598 SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result);
1599 return result;
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);

Callers

nothing calls this directly

Calls 1

timerfd_createMethod · 0.80

Tested by

no test coverage detected