Home
last modified time | relevance | path

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

/external/toybox/toys/other/
Dsetsid.c22 while (setsid()<0) if (XVFORK()) _exit(0); in setsid_main()
Dtimeout.c66 if (!(TT.pid = XVFORK())) xexec(toys.optargs+1); in timeout_main()
Doneit.c82 pid = XVFORK(); in oneit_main()
/external/toybox/toys/posix/
Dtime.c31 if (!(pid = XVFORK())) xexec(toys.optargs); in time_main()
Dxargs.c172 if (!(pid = XVFORK())) { in xargs_main()
/external/toybox/lib/
Dlib.h326 #define XVFORK() xvforkwrap(vfork()) macro
Dxwrap.c211 if (!(pid = CFG_TOYBOX_FORK ? xfork() : XVFORK())) { in xpopen_both()