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.c1616 int host_pipe[2]; in do_pipe() local
1618 ret = pipe2(host_pipe, flags); in do_pipe()
1627 cpu_env->ir[IR_A4] = host_pipe[1]; in do_pipe()
1628 return host_pipe[0]; in do_pipe()
1630 cpu_env->active_tc.gpr[3] = host_pipe[1]; in do_pipe()
1631 return host_pipe[0]; in do_pipe()
1633 cpu_env->gregs[1] = host_pipe[1]; in do_pipe()
1634 return host_pipe[0]; in do_pipe()
1636 cpu_env->regwptr[1] = host_pipe[1]; in do_pipe()
1637 return host_pipe[0]; in do_pipe()
[all …]