| 1007 | } |
| 1008 | |
| 1009 | static U32 syscall_fstat64(CPU* cpu, U32 eipCount) { |
| 1010 | SYS_LOG1(SYSCALL_FILE, cpu, "fstat64: fildes=%d buf=%X", ARG1, ARG2); |
| 1011 | U32 result = cpu->thread->process->fstat64(ARG1, ARG2); |
| 1012 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 1013 | return result; |
| 1014 | } |
| 1015 | |
| 1016 | static U32 syscall_lchown32(CPU* cpu, U32 eipCount) { |
| 1017 | BString path = cpu->memory->readString(ARG1); |