Home
last modified time | relevance | path

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

/external/toybox/toys/other/
Dsetsid.c22 while (setsid()<0) if (XVFORK()) _exit(0); in setsid_main()
Doneit.c83 pid = XVFORK(); in oneit_main()
Dtimeout.c80 if (!(TT.pid = XVFORK())) xexec(toys.optargs+1); in timeout_main()
/external/toybox/toys/posix/
Dtime.c33 if (!(pid = XVFORK())) xexec(toys.optargs); in time_main()
Dxargs.c194 if (!(pid = XVFORK())) { in xargs_main()
/external/toybox/toys/net/
Dnetcat.c155 if (toys.optflags&FLAG_L) NOEXIT(child = XVFORK()); in netcat_main()
/external/toybox/lib/
Dlib.h378 #define XVFORK() xvforkwrap(vfork()) macro
Dxwrap.c236 if (!(pid = CFG_TOYBOX_FORK ? xfork() : XVFORK())) { in xpopen_both()