| 286 | } |
| 287 | |
| 288 | static U32 syscall_mkdir(CPU* cpu, U32 eipCount) { |
| 289 | BString path = cpu->memory->readString(ARG1); |
| 290 | |
| 291 | SYS_LOG1(SYSCALL_FILE, cpu, "mkdir: path=%X (%s) mode=%X", ARG1, path.c_str(), ARG2); |
| 292 | U32 result = cpu->thread->process->mkdir(path); |
| 293 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 294 | return result; |
| 295 | } |
| 296 | |
| 297 | static U32 syscall_rmdir(CPU* cpu, U32 eipCount) { |
| 298 | BString path = cpu->memory->readString(ARG1); |
nothing calls this directly
no test coverage detected