| 1486 | } |
| 1487 | |
| 1488 | static U32 syscall_mkdirat(CPU* cpu, U32 eipCount) { |
| 1489 | BString path = cpu->memory->readString(ARG2); |
| 1490 | SYS_LOG1(SYSCALL_FILE, cpu, "mkdirat: dirfd=%d path=%s mode=%x", ARG1, path.c_str(), ARG3); |
| 1491 | U32 result = cpu->thread->process->mkdirat(ARG1, path, ARG3); |
| 1492 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 1493 | return result; |
| 1494 | } |
| 1495 | |
| 1496 | static U32 syscall_fchownat(CPU* cpu, U32 eipCount) { |
| 1497 | BString pathname = cpu->memory->readString(ARG2); |
nothing calls this directly
no test coverage detected