Home
last modified time | relevance | path

Searched refs:vfork (Results 1 - 25 of 43) sorted by relevance

12

/third_party/musl/src/process/s390x/
H A Dvfork.s1 .global vfork
2 .type vfork,%function
3 vfork: label
/third_party/musl/src/process/x86_64/
H A Dvfork.s1 .global vfork
2 .type vfork,@function
3 vfork: label
/third_party/musl/src/process/aarch64/
H A Dvfork.s1 .global vfork
2 .type vfork,%function
3 vfork: label
/third_party/musl/src/process/riscv64/
H A Dvfork.s1 .global vfork
2 .type vfork,@function
3 vfork: label
/third_party/musl/src/process/i386/
H A Dvfork.s1 .global vfork
2 .type vfork,@function
3 vfork: label
/third_party/musl/src/process/x32/
H A Dvfork.s1 .global vfork
2 .type vfork,@function
3 vfork: label
/third_party/musl/src/process/arm/
H A Dvfork.s2 .global vfork
3 .type vfork,%function
4 vfork: label
/third_party/musl/src/process/sh/
H A Dvfork.s1 .global vfork
2 .type vfork,@function
3 vfork: label
/third_party/musl/libc-test/src/functional/
H A Dvfork.c26 if((pid = vfork()) == 0) { in test_exit()
31 t_error("vfork failed: %s\n", strerror(errno)); in test_exit()
42 if((pid = vfork()) == 0) { in sh()
48 t_error("vfork failed: %s\n", strerror(errno)); in sh()
/third_party/musl/libc-test/src/functionalext/supplement/process/
H A Dvfork.c34 pid = vfork(); in vfork_0100()
37 t_error("%s vfork failed\n", __func__); in vfork_0100()
/third_party/musl/porting/linux/user/src/process/
H A Dvfork.c10 /* vfork syscall cannot be made from C code */ in __vfork()
18 pid_t vfork(void) in vfork() function
/third_party/musl/src/process/
H A Dvfork.c12 /* vfork syscall cannot be made from C code */ in __vfork()
20 pid_t vfork(void) in vfork() function
/third_party/ltp/testcases/kernel/controllers/freezer/
H A Dvfork_freeze.sh22 # This bash script tests freezer code by starting a process with vfork(2).
23 # vfork causes the freezer to wait until the vfork call "returns" to the
27 # we need the vfork test binary -- ensure it's been built
30 if [ ! -x "$CGROUPS_TESTROOT/vfork" ] ; then
59 # We replace the normal sample process with a process which uses vfork to
60 # create new processes. The vfork'ed processes then sleep, causing the
65 vfork -s$sample_sleep 1 -f "$TMPLOG" &
H A Dvfork.c22 * vfork <num> times, stopping after each vfork. TODO: Requires an external process
23 * to send SIGCONT to goto the next vfork. <num> SIGCONT signals must be
26 * We can't do anything but execve or _exit in vfork'd processes
27 * so we use ptrace vfork'd processes in order to pause then during each
28 * vfork. This places the parent process in "TASK_UNINTERRUPTIBLE" state
29 * until vfork returns. This can delay delivery of signals to the parent
58 char *TCID = "vfork";
102 child = vfork(); in do_vfork()
108 tst_brkm(TFAIL | TERRNO, NULL, "vfork faile in do_vfork()
[all...]
/third_party/ltp/testcases/kernel/syscalls/
H A DMakefile31 setdomainname sethostname symlinkat ulimit ustat vfork vhangup vmsplice
/third_party/toybox/toys/other/
H A Doneit.c61 if (!vfork()) reboot(action); in oneit_signaled()
/third_party/toybox/toys/pending/
H A Dinit.c248 else pid = vfork(); in final_run()
368 pid = vfork(); in halt_poweroff_reboot_handler()
396 pid = vfork(); in restart_init_handler()
/third_party/ltp/testcases/kernel/syscalls/vfork/
H A Dvfork02.c24 * Fork a process using vfork() and verify that, the pending signals in
106 * Call vfork(2) to create a child process without in main()
109 TEST(vfork()); in main()
112 tst_resm(TFAIL, "vfork() Failed, errno=%d : %s", in main()
147 tst_resm(TPASS, "Call to vfork() " in main()
H A Dvfork01.c24 * Fork a process using vfork() and verify that, the attribute values like
122 * Call vfork(2) to create a child process without in main()
125 TEST(vfork()); in main()
128 tst_resm(TFAIL, "vfork() Failed, errno=%d : %s", in main()
270 tst_resm(TPASS, "Call of vfork() successful"); in main()
/third_party/ltp/testcases/kernel/syscalls/ptrace/
H A Dspawn_ptrace_child.h22 #include <unistd.h> /* execlp() sleep() vfork() */
70 pid = vfork(); in make_a_baby()
72 tst_resm(TFAIL, "vfork() failed"); in make_a_baby()
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dfdsan.cpp72 pid_t rc = vfork(); in fdsan_test_vfork()
/third_party/ltp/lib/
H A Dtst_cmd.c81 pid_t pid = vfork(); in tst_cmd_fds_()
83 tst_brkm(TBROK | TERRNO, cleanup_fn, "vfork failed at %s:%d", in tst_cmd_fds_()
/third_party/musl/porting/liteos_a/user/include/
H A Dunistd.h184 pid_t vfork(void);
/third_party/musl/porting/uniproton/kernel/include/
H A Dunistd.h159 pid_t vfork(void);
/third_party/musl/porting/linux/user/include/
H A Dunistd.h186 pid_t vfork(void);

Completed in 10 milliseconds

12