Home | History | Annotate | Download | only in googletest

Lines Matching refs:fork

88     "Instructs to use fork()/_exit() instead of clone() in death tests. "
89 "Ignored and always uses fork() on POSIX systems where clone() is not "
181 msg << "Death tests use fork(), which is unsafe particularly"
783 // The AssumeRole process for a fork-and-run death test. It implements a
784 // straightforward fork, with a simple pipe to transmit the status byte.
796 // When we fork the process below, the log file buffers are copied, but the
800 // This is as close to the fork as possible to avoid a race condition in case
805 const pid_t child_pid = fork();
949 // A threadsafe implementation of fork(2) for threadsafe-style death tests
977 if (use_fork && (child_pid = fork()) == 0) {
986 // The AssumeRole process for a fork-and-exec death test. It re-executes the