| 311 | } |
| 312 | |
| 313 | static U32 syscall_pipe(CPU* cpu, U32 eipCount) { |
| 314 | SYS_LOG1(SYSCALL_FILE, cpu, "pipe: fildes=%X", ARG1); |
| 315 | U32 result = ksocketpair(cpu->thread, K_AF_UNIX, K_SOCK_STREAM, 0, ARG1, 0); |
| 316 | SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result); |
| 317 | return result; |
| 318 | } |
| 319 | |
| 320 | static U32 syscall_times(CPU* cpu, U32 eipCount) { |
| 321 | SYS_LOG1(SYSCALL_SYSTEM, cpu, "times: buf=%X", ARG1); |
nothing calls this directly
no test coverage detected