MCPcopy Index your code
hub / github.com/apache/httpd / header_request_loadavg

Function header_request_loadavg

modules/metadata/mod_headers.c:217–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217static 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
225static const char *header_request_idle(request_rec *r, char *a)
226{

Callers

nothing calls this directly

Calls 1

ap_get_loadavgFunction · 0.85

Tested by

no test coverage detected