| 1446 | } |
| 1447 | |
| 1448 | static U32 syscall_utimes(CPU* cpu, U32 eipCount) { |
| 1449 | BString fileName = cpu->memory->readString(ARG1); |
| 1450 | SYS_LOG1(SYSCALL_FILE, cpu, "utimes: fileName=%s times=%X", fileName.c_str(), ARG2); |
| 1451 | U32 result = cpu->thread->process->utimes(fileName, ARG2); |
| 1452 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 1453 | return result; |
| 1454 | } |
| 1455 | |
| 1456 | static U32 syscall_fadvise64(CPU* cpu, U32 eipCount) { |
| 1457 | U32 result = 0; |
nothing calls this directly
no test coverage detected