Lines Matching defs:pid
50 * \param pid PID of the process that will write to the file.
54 init_out_filename(atf_dynstr_t *name, const pid_t pid, const char *suffix,
60 (int)pid, suffix);
254 const pid_t pid = fork();
255 if (pid == -1)
258 if (pid == 0) {
271 return pid;
409 * \param pid The process to be waited for. Must have been started by
415 atf_utils_wait(const pid_t pid, const int exitstatus, const char *expout,
419 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
422 init_out_filename(&out_name, pid, "out", true);
425 init_out_filename(&err_name, pid, "err", true);