| 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); |
| 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 | |
| 1616 | static U32 syscall_utimensat_time64(CPU* cpu, U32 eipCount) { |
| 1617 | BString path = cpu->memory->readString(ARG2); |
nothing calls this directly
no test coverage detected