| 716 | } |
| 717 | |
| 718 | AP_DECLARE(process_score *) ap_get_scoreboard_process(int x) |
| 719 | { |
| 720 | if ((x < 0) || (x >= server_limit)) { |
| 721 | return(NULL); /* Out of range */ |
| 722 | } |
| 723 | return &ap_scoreboard_image->parent[x]; |
| 724 | } |
| 725 | |
| 726 | AP_DECLARE(global_score *) ap_get_scoreboard_global(void) |
| 727 | { |
no outgoing calls
no test coverage detected