| 421 | } |
| 422 | |
| 423 | static U32 syscall_getrusuage(CPU* cpu, U32 eipCount) { |
| 424 | SYS_LOG1(SYSCALL_SYSTEM, cpu, "getrusage: who=%d usuage=%X", ARG1, ARG2); |
| 425 | U32 result = cpu->thread->process->getrusuage(cpu->thread, ARG1, ARG2); |
| 426 | SYS_LOG(SYSCALL_SYSTEM, cpu, " result=%d(0x%X)\n", result, result); |
| 427 | return result; |
| 428 | } |
| 429 | |
| 430 | static U32 syscall_gettimeofday(CPU* cpu, U32 eipCount) { |
| 431 | SYS_LOG1(SYSCALL_SYSTEM, cpu, "gettimeofday: tv=%X tz=%X", ARG1, ARG2); |
nothing calls this directly
no test coverage detected