| 1432 | } |
| 1433 | |
| 1434 | static U32 syscall_fstatfs64(CPU* cpu, U32 eipCount) { |
| 1435 | SYS_LOG1(SYSCALL_FILE, cpu, "fstatfs64: fd=%d len=%d buf=%X", ARG1, ARG2, ARG3); |
| 1436 | U32 result = cpu->thread->process->fstatfs64(ARG1, ARG3); |
| 1437 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 1438 | return result; |
| 1439 | } |
| 1440 | |
| 1441 | static U32 syscall_tgkill(CPU* cpu, U32 eipCount) { |
| 1442 | SYS_LOG1(SYSCALL_SIGNAL, cpu, "tgkill: threadGroupId=%d threadId=%d signal=%d", ARG1, ARG2, ARG3); |