Searched refs:thread_limit (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/apache-793/httpd/server/
H A Dscoreboard.c111 static int server_limit, thread_limit; variable
134 ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &thread_limit);
139 scoreboard_size += sizeof(worker_score) * server_limit * thread_limit;
163 more_storage += thread_limit * sizeof(worker_score);
167 ap_scoreboard_image->global->thread_limit = thread_limit;
310 sizeof(worker_score) * thread_limit);
468 ws->thread_num = child_num * thread_limit + thread_num;
567 ((y < 0) || (y >= thread_limit))) {
H A Dutil.c2888 int i, j, server_limit, thread_limit; local
2901 ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &thread_limit);
2908 for (j = 0; j < thread_limit; j++) {
/macosx-10.10/apache-793/httpd/modules/cluster/
H A Dmod_heartbeat.c37 int thread_limit; member in struct:hb_ctx_t
61 for (j = 0; j < ctx->thread_limit; j++) {
119 ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &ctx->thread_limit);
/macosx-10.10/apache-793/httpd/server/mpm/winnt/
H A Dmpm_winnt.c89 static int thread_limit = 0; variable
126 thread_limit = atoi(arg);
943 *result = thread_limit;
1397 thread_limit = DEFAULT_THREAD_LIMIT;
1416 if (thread_limit > MAX_THREAD_LIMIT) {
1420 "limit of", thread_limit);
1428 thread_limit, MAX_THREAD_LIMIT);
1430 thread_limit = MAX_THREAD_LIMIT;
1432 else if (thread_limit < 1) {
1436 "increasing to 1.", thread_limit);
[all...]
/macosx-10.10/apache-793/httpd/modules/generators/
H A Dmod_status.c89 static int server_limit, thread_limit, threads_per_child, max_servers, variable
238 stat_buffer = apr_palloc(r->pool, server_limit * thread_limit * sizeof(char));
306 for (j = 0; j < thread_limit; ++j) {
307 int indx = (i * thread_limit) + j;
565 for (j = 0; j < thread_limit; ++j) {
566 int indx = (i * thread_limit) + j;
601 for (j = 0; j < thread_limit; ++j) {
602 int indx = (i * thread_limit) + j;
639 for (j = 0; j < thread_limit; ++j) {
920 ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &thread_limit);
[all...]
/macosx-10.10/apache-793/httpd/server/mpm/worker/
H A Dworker.c123 static int thread_limit = 0; variable
189 #define ID_FROM_CHILD_THREAD(c, t) ((c * thread_limit) + t)
339 *result = thread_limit;
2036 thread_limit = DEFAULT_THREAD_LIMIT;
2100 if (thread_limit > MAX_THREAD_LIMIT) {
2104 "limit of", thread_limit);
2112 thread_limit, MAX_THREAD_LIMIT);
2114 thread_limit = MAX_THREAD_LIMIT;
2116 else if (thread_limit < 1) {
2120 "increasing to 1.", thread_limit);
[all...]
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dmod_socache_memcache.c87 int thread_limit = 0; local
93 ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &thread_limit);
142 thread_limit,
/macosx-10.10/apache-793/httpd/include/
H A Dscoreboard.h122 int thread_limit; member in struct:__anon6113
/macosx-10.10/apache-793/httpd/server/mpm/event/
H A Devent.c168 static int thread_limit = 0; variable
322 #define ID_FROM_CHILD_THREAD(c, t) ((c * thread_limit) + t)
484 *result = thread_limit;
2910 thread_limit = DEFAULT_THREAD_LIMIT;
2974 if (thread_limit > MAX_THREAD_LIMIT) {
2978 "limit of", thread_limit);
2986 thread_limit, MAX_THREAD_LIMIT);
2988 thread_limit = MAX_THREAD_LIMIT;
2990 else if (thread_limit < 1) {
2994 "increasing to 1.", thread_limit);
[all...]

Completed in 226 milliseconds