Lines Matching defs:fork
458 // or after fork.
1048 "fork is not supported. Dying (set die_after_fork=0 to override)\n");
1053 "fork is not supported (pid %lu). Continuing because of "
2312 TSAN_INTERCEPTOR(int, fork, int fake) {
2314 return REAL(fork)(fake);
2315 SCOPED_INTERCEPTOR_RAW(fork, fake);
2316 return REAL(fork)(fake);
2358 // Instead we simply turn vfork into fork.
2359 return WRAP(fork)(fake);
2375 // Start the background thread for fork, but not for clone.
2376 // For fork we did this always and it's known to work (or user code has
3068 TSAN_INTERCEPT(fork);