| 1593 | } |
| 1594 | |
| 1595 | static 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 | |
| 1602 | static 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); |
nothing calls this directly
no test coverage detected