Home | History | Annotate | Download | only in coregrind

Lines Matching defs:fork

462 /* Spawns a new child. Uses either spawn syscall or fork+execv combo. */
526 Int pid = VG_(fork)();
843 Fork
846 Int VG_(fork) ( void )
875 /* Using fork() on Solaris is not really the best thing to do. Solaris
876 does not do memory overcommitment so fork() can fail if there is not
878 Prefer to use VG_(spawn)() over VG_(fork)() + VG_(execv)(). */
880 res = VG_(do_syscall2)(__NR_forksys, 0 /*subcode (fork)*/, 0 /*flags*/);