summaryrefslogtreecommitdiff
path: root/snac.h
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-01-08 08:50:40 +0100
committerdefault <nobody@localhost>2024-01-08 08:50:40 +0100
commit62b2c2838cadd58759cde540c5f22ba9593b45fe (patch)
tree35137a5f3f26514c92d4e12ea32620b63b2367b9 /snac.h
parent80de92d6b835aad4142d57650aed43467c3861fa (diff)
Renamed some thread states.
Diffstat (limited to 'snac.h')
-rw-r--r--snac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/snac.h b/snac.h
index c8ba887..9d2a0c9 100644
--- a/snac.h
+++ b/snac.h
@@ -51,7 +51,7 @@ typedef struct {
time_t srv_start_time; /* start time */
int job_fifo_size; /* job fifo size */
int n_threads; /* number of configured threads */
- enum { THST_WAIT, THST_IN, THST_OUT, THST_STOP } th_state[MAX_THREADS];
+ enum { THST_WAIT, THST_IN, THST_QUEUE, THST_STOP } th_state[MAX_THREADS];
} srv_state;
void snac_log(snac *user, xs_str *str);