Searched defs:busy (Results 1 - 9 of 9) sorted by relevance

/httpd/include/
H A Dheartbeat.h44 int busy; member in struct:hm_slot_server_t
H A Dhttpd.h1359 /* percentage of process/threads busy (0->100) */
1360 int busy; member in struct:ap_sload_t
/httpd/modules/cluster/
H A Dmod_heartbeat.c41 static const char *msg_format = "v=%u&ready=%u&busy=%u";
52 apr_uint32_t busy = 0; local
76 busy++;
81 len = apr_snprintf(buf, sizeof(buf), msg_format, MSG_VERSION, ready, busy);
H A Dmod_heartmonitor.c49 int busy; member in struct:hm_server_t
176 old->busy = new->busy;
206 hmserver.busy = s->busy;
308 if (apr_table_get(hbt, "busy")) {
309 node.busy = atoi(apr_table_get(hbt, "busy"));
311 node.busy = 0;
332 apr_file_printf(fp, "%s &ready=%u&busy
[all...]
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c51 int busy; member in struct:hb_server_t
183 if (apr_table_get(hbt, "busy")) {
184 server->busy = atoi(apr_table_get(hbt, "busy"));
199 if (server->busy == 0 && server->ready != 0) {
228 server->busy = slotserver->busy;
232 if (server->busy == 0 && server->ready != 0) {
/httpd/modules/generators/
H A Dmod_status.c190 int busy; local
231 busy = 0;
330 busy++;
523 "%d idle workers</dt>\n", busy, ready);
525 ap_rprintf(r, "BusyWorkers: %d\nIdleWorkers: %d\n", busy, ready);
534 * These differ from 'busy' and 'ready' in how gracefully finishing
545 "<th>busy</th><th>idle</th><th>writing</th>"
/httpd/modules/proxy/
H A Dmod_serf.c809 int busy; member in struct:hb_server_t
897 if (apr_table_get(hbt, "busy")) {
898 server->busy = atoi(apr_table_get(hbt, "busy"));
913 if (server->busy == 0 && server->ready != 0) {
H A Dmod_proxy.h383 apr_size_t busy; /* busyness factor */ member in struct:__anon284
/httpd/server/
H A Dutil.c2994 int busy = 0; local
3000 ld->busy = -1;
3025 busy++;
3038 total = busy + ready;
3041 ld->busy = busy * 100 / total;

Completed in 39 milliseconds