Searched defs:child_slot (Results 1 - 5 of 5) sorted by relevance

/httpd/server/mpm/mpmt_os2/
H A Dmpmt_os2_child.c65 static int child_slot; variable
148 for (child_slot = 0; ap_scoreboard_image->parent[child_slot].pid != my_pid && child_slot < HARD_SERVER_LIMIT; child_slot++);
150 if (child_slot == HARD_SERVER_LIMIT) {
156 ap_my_generation = ap_scoreboard_image->parent[child_slot].generation;
157 memset(ap_scoreboard_image->servers[child_slot], 0, sizeof(worker_score) * HARD_THREAD_LIMIT);
172 // ap_scoreboard_image->servers[child_slot][c].tid = _beginthread(worker_main, NULL, 128*1024, (void *)c);
251 ap_scoreboard_image->parent[child_slot]
[all...]
/httpd/server/mpm/motorz/
H A Dmotorz.c1264 int child_slot; local
1278 child_slot = ap_find_child_by_pid(&pid);
1285 if (child_slot < 0
1286 || ap_get_scoreboard_process(child_slot)->generation
1300 if (child_slot >= 0) {
1301 (void) ap_update_child_status_from_indexes(child_slot, 0, SERVER_DEAD,
1303 motorz_note_child_killed(child_slot, 0, 0);
1305 && child_slot < ap_daemons_limit) {
1309 make_child(mz, ap_server_conf, child_slot,
1310 ap_get_scoreboard_process(child_slot)
[all...]
/httpd/server/mpm/prefork/
H A Dprefork.c1049 int child_slot; local
1063 child_slot = ap_find_child_by_pid(&pid);
1070 if (child_slot < 0
1071 || ap_get_scoreboard_process(child_slot)->generation
1085 if (child_slot >= 0) {
1086 (void) ap_update_child_status_from_indexes(child_slot, 0, SERVER_DEAD,
1088 prefork_note_child_killed(child_slot, 0, 0);
1096 && child_slot < ap_daemons_limit) {
1100 make_child(ap_server_conf, child_slot,
1101 ap_get_scoreboard_process(child_slot)
[all...]
/httpd/server/mpm/worker/
H A Dworker.c1691 int child_slot; local
1702 child_slot = ap_find_child_by_pid(&pid);
1709 if (child_slot < 0
1710 || ap_get_scoreboard_process(child_slot)->generation
1731 if (child_slot >= 0) {
1735 ap_update_child_status_from_indexes(child_slot, i, SERVER_DEAD,
1738 worker_note_child_killed(child_slot, 0, 0);
1739 ps = &ap_scoreboard_image->parent[child_slot];
1746 && child_slot < ap_daemons_limit) {
1750 make_child(ap_server_conf, child_slot, p
[all...]
/httpd/server/mpm/event/
H A Devent.c2952 int child_slot; local
2963 child_slot = ap_find_child_by_pid(&pid);
2970 if (child_slot < 0
2971 || ap_get_scoreboard_process(child_slot)->generation
2992 if (child_slot >= 0) {
2996 ap_update_child_status_from_indexes(child_slot, i,
3000 event_note_child_killed(child_slot, 0, 0);
3001 ps = &ap_scoreboard_image->parent[child_slot];
3008 && child_slot < ap_daemons_limit) {
3012 make_child(ap_server_conf, child_slot, p
[all...]

Completed in 73 milliseconds