/third_party/musl/src/process/s390x/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,%function 3 vfork: label
|
/third_party/musl/src/process/x86_64/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,@function 3 vfork: label
|
/third_party/musl/src/process/aarch64/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,%function 3 vfork: label
|
/third_party/musl/src/process/riscv64/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,@function 3 vfork: label
|
/third_party/musl/src/process/i386/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,@function 3 vfork: label
|
/third_party/musl/src/process/x32/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,@function 3 vfork: label
|
/third_party/musl/src/process/arm/ |
H A D | vfork.s | 2 .global vfork 3 .type vfork,%function 4 vfork: label
|
/third_party/musl/src/process/sh/ |
H A D | vfork.s | 1 .global vfork 2 .type vfork,@function 3 vfork: label
|
/third_party/musl/libc-test/src/functional/ |
H A D | vfork.c | 26 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 D | vfork.c | 34 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 D | vfork.c | 10 /* 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 D | vfork.c | 12 /* 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 D | vfork_freeze.sh | 22 # 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 D | vfork.c | 22 * 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 D | Makefile | 31 setdomainname sethostname symlinkat ulimit ustat vfork vhangup vmsplice
|
/third_party/toybox/toys/other/ |
H A D | oneit.c | 61 if (!vfork()) reboot(action); in oneit_signaled()
|
/third_party/toybox/toys/pending/ |
H A D | init.c | 248 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 D | vfork02.c | 24 * 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 D | vfork01.c | 24 * 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 D | spawn_ptrace_child.h | 22 #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 D | fdsan.cpp | 72 pid_t rc = vfork(); in fdsan_test_vfork()
|
/third_party/ltp/lib/ |
H A D | tst_cmd.c | 81 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 D | unistd.h | 184 pid_t vfork(void);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 159 pid_t vfork(void);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 186 pid_t vfork(void);
|