Searched refs:vfork (Results 26 - 50 of 106) sorted by relevance

12345

/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dpex-unix.c60 #ifdef vfork /* Autoconf may define this to fork for us. */
63 # define VFORK_STRING "vfork"
66 #include <vfork.h>
69 #define vfork() (decc$$alloc_vfork_blocks() >= 0 ? \ macro
336 because we might be here due to a vfork call. */
367 them being clobbered by vfork. */
375 pid = vfork ();
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dser-pipe.c69 apparent call to vfork() below *might* actually be a call to
70 fork() due to the fact that autoconf will ``#define vfork fork''
72 pid = vfork ();
H A Dfork-child.c122 made static to ensure that they survive the vfork() call. */
283 /* Create the child process. Note that the apparent call to vfork()
285 autoconf will ``#define vfork fork'' on certain platforms. */
289 pid = vfork ();
292 perror_with_name ("vfork");
310 a vfork can also change them for the superior, so we don't mess
/freebsd-10.1-release/lib/libproc/
H A Dproc_create.c141 if ((pid = vfork()) == -1)
/freebsd-10.1-release/lib/libutil/tests/
H A Dflopen_test.c133 if (vfork() == 0) {
139 result = "vfork() doesn't work as expected";
/freebsd-10.1-release/usr.sbin/cron/lib/
H A Dcompat.c38 /* the code does not depend on any of vfork's
44 vfork() { function
/freebsd-10.1-release/contrib/amd/amd/
H A Dinfo_exec.c278 switch ((p1 = vfork())) {
287 p2 = vfork();
/freebsd-10.1-release/contrib/bmake/
H A Dconfig.h.in188 /* Define to 1 if you have the `vfork' function. */
191 /* Define to 1 if you have the <vfork.h> header file. */
218 /* Define to 1 if `vfork' works. */
313 /* Define as `fork' if `vfork' does not work. */
314 #undef vfork
/freebsd-10.1-release/contrib/diff/src/
H A Dsystem.h236 # include <vfork.h>
240 # define vfork fork macro
/freebsd-10.1-release/contrib/openbsm/config/
H A Dconfig.h.in204 /* Define to 1 if you have the `vfork' function. */
207 /* Define to 1 if you have the <vfork.h> header file. */
216 /* Define to 1 if `vfork' works. */
309 /* Define as `fork' if `vfork' does not work. */
310 #undef vfork
/freebsd-10.1-release/gnu/usr.bin/rcs/lib/
H A Dconf.h38 /* #include <vfork.h> */
184 #define has_vfork 1 /* Does vfork() work? */
327 # undef vfork macro
328 # define vfork fork macro
/freebsd-10.1-release/sys/compat/linux/
H A Dlinux_fork.c110 if (ldebug(vfork))
111 printf(ARGS(vfork, ""));
139 /* wait for the children to exit, ie. emulate vfork */
292 /* wait for the children to exit, ie. emulate vfork */
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Dfilter_fork_posix.c149 child = vfork();
/freebsd-10.1-release/contrib/libpcap/lbl/
H A Dos-sunos4.h188 int vfork(void);
/freebsd-10.1-release/contrib/nvi/ex/
H A Dex_shell.c119 switch (pid = vfork()) {
121 msgq(sp, M_SYSERR, "vfork");
/freebsd-10.1-release/contrib/tcpdump/lbl/
H A Dos-sunos4.h188 int vfork(void);
/freebsd-10.1-release/lib/libc/gen/
H A Dpopen.c108 switch (pid = vfork()) {
/freebsd-10.1-release/libexec/fingerd/
H A Dfingerd.c191 switch(vfork()) {
/freebsd-10.1-release/libexec/ftpd/
H A Dpopen.c120 pid = (strcmp(gargv[0], _PATH_LS) == 0) ? fork() : vfork();
/freebsd-10.1-release/tools/tools/syscall_timing/
H A Dsyscall_timing.c491 pid = vfork();
493 err(-1, "test_vfork: vfork");
502 pid = vfork();
504 err(-1, "test_vfork: vfork");
557 pid = vfork();
559 err(-1, "test_vfork_exec: vfork");
570 pid = vfork();
572 err(-1, "test_vfork_exec: vfork");
670 { "vfork", test_vfork },
/freebsd-10.1-release/usr.bin/apply/
H A Dapply.c235 switch(pid = vfork()) {
237 err(1, "vfork");
/freebsd-10.1-release/usr.bin/truss/
H A Dsetup.c74 pid = vfork();
/freebsd-10.1-release/usr.sbin/cron/cron/
H A Dpopen.c115 switch(pid = vfork()) {
/freebsd-10.1-release/bin/mv/
H A Dmv.c389 if (!(pid = vfork())) {
416 if (!(pid = vfork())) {
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dconfig.in340 /* Define to 1 if you have the `vfork' function. */
343 /* Define to 1 if you have the <vfork.h> header file. */
370 /* Define to 1 if `vfork' works. */
443 /* Define as `fork' if `vfork' does not work. */
444 #undef vfork

Completed in 122 milliseconds

12345