diff options
| author | default <nobody@localhost> | 2024-01-08 08:50:40 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-01-08 08:50:40 +0100 |
| commit | 62b2c2838cadd58759cde540c5f22ba9593b45fe (patch) | |
| tree | 35137a5f3f26514c92d4e12ea32620b63b2367b9 /httpd.c | |
| parent | 80de92d6b835aad4142d57650aed43467c3861fa (diff) | |
Renamed some thread states.
Diffstat (limited to 'httpd.c')
| -rw-r--r-- | httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -529,7 +529,7 @@ static void *job_thread(void *arg) } else { /* it's a q_item */ - p_state->th_state[pid] = THST_OUT; + p_state->th_state[pid] = THST_QUEUE; process_queue_item(job); } @@ -562,7 +562,7 @@ static void *background_thread(void *arg) time_t t; int cnt = 0; - p_state->th_state[0] = THST_IN; + p_state->th_state[0] = THST_QUEUE; { xs *list = user_list(); |