Searched defs:client_pids (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-http/
H A Dtest-http-server-errors.c54 static pid_t *client_pids = NULL; variable
776 if (client_pids[i] != (pid_t)-1) {
777 (void)kill(client_pids[i], SIGKILL);
778 (void)waitpid(client_pids[i], NULL, 0);
779 client_pids[i] = -1;
794 client_pids = NULL;
800 client_pids = i_new(pid_t, client_tests_count);
802 client_pids[i] = (pid_t)-1;
806 if ((client_pids[i] = fork()) == (pid_t)-1)
808 if (client_pids[
[all...]
/dovecot/src/lib-smtp/
H A Dtest-smtp-server-errors.c58 static pid_t *client_pids = NULL; variable
1225 if (client_pids[i] != (pid_t)-1) {
1226 (void)kill(client_pids[i], SIGKILL);
1227 (void)waitpid(client_pids[i], NULL, 0);
1228 client_pids[i] = -1;
1243 client_pids = NULL;
1249 client_pids = i_new(pid_t, client_tests_count);
1251 client_pids[i] = (pid_t)-1;
1255 if ((client_pids[i] = fork()) == (pid_t)-1)
1257 if (client_pids[
[all...]

Completed in 22 milliseconds