| 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); |
| 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 | |
| 1609 | static U32 syscall_timerfd_gettime(CPU* cpu, U32 eipCount) { |
| 1610 | SYS_LOG1(SYSCALL_FILE, cpu, "timerfd_settime fd=%d value=%x", ARG1, ARG2); |
nothing calls this directly
no test coverage detected