Lines Matching defs:process
14 #include "service-process.h"
480 *error_r = "config process not specified";
504 struct service_process *process = service->processes;
508 for (; process != NULL; process = process->next) {
509 i_assert(process->service == service);
511 if (!SERVICE_PROCESS_IS_INITIALIZED(process) &&
518 if (kill(process->pid, signo) == 0)
522 dec2str(process->pid), signo);
741 struct service_process *process;
743 /* free all child process information */
745 while (hash_table_iterate(iter, service_pids, &key, &process))
746 service_process_destroy(process);