| 215 | } |
| 216 | |
| 217 | static const char *header_request_loadavg(request_rec *r, char *a) |
| 218 | { |
| 219 | ap_loadavg_t t; |
| 220 | ap_get_loadavg(&t); |
| 221 | return apr_psprintf(r->pool, "l=%.2f/%.2f/%.2f", t.loadavg, |
| 222 | t.loadavg5, t.loadavg15); |
| 223 | } |
| 224 | |
| 225 | static const char *header_request_idle(request_rec *r, char *a) |
| 226 | { |
nothing calls this directly
no test coverage detected