mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
New state variable top_job_fifo_size.
This commit is contained in:
parent
62b2c2838c
commit
d05399986d
3
httpd.c
3
httpd.c
@ -457,6 +457,9 @@ void job_post(const xs_val *job, int urgent)
|
||||
|
||||
p_state->job_fifo_size++;
|
||||
|
||||
if (p_state->job_fifo_size > p_state->top_job_fifo_size)
|
||||
p_state->top_job_fifo_size = p_state->job_fifo_size;
|
||||
|
||||
/* unlock the mutex */
|
||||
pthread_mutex_unlock(&job_mutex);
|
||||
|
||||
|
1
snac.h
1
snac.h
@ -50,6 +50,7 @@ typedef struct {
|
||||
int use_fcgi; /* FastCGI use on/off */
|
||||
time_t srv_start_time; /* start time */
|
||||
int job_fifo_size; /* job fifo size */
|
||||
int top_job_fifo_size; /* maximum job fifo size seen */
|
||||
int n_threads; /* number of configured threads */
|
||||
enum { THST_WAIT, THST_IN, THST_QUEUE, THST_STOP } th_state[MAX_THREADS];
|
||||
} srv_state;
|
||||
|
Loading…
Reference in New Issue
Block a user