Home
last modified time | relevance | path

Searched refs:host_pipe (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsyscall.c1587 int host_pipe[2]; in do_pipe() local
1589 ret = pipe2(host_pipe, flags); in do_pipe()
1598 cpu_env->ir[IR_A4] = host_pipe[1]; in do_pipe()
1599 return host_pipe[0]; in do_pipe()
1601 cpu_env->active_tc.gpr[3] = host_pipe[1]; in do_pipe()
1602 return host_pipe[0]; in do_pipe()
1604 cpu_env->gregs[1] = host_pipe[1]; in do_pipe()
1605 return host_pipe[0]; in do_pipe()
1607 cpu_env->regwptr[1] = host_pipe[1]; in do_pipe()
1608 return host_pipe[0]; in do_pipe()
[all …]