aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/worker_queue.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-06-09 09:23:54 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-06-09 09:23:54 +0200
commit9afecc03260a938fa57389ce3adffa5052df8076 (patch)
treef54a7f2ebe380c3bcfd03558c813c58e704b3b35 /src/worker_queue.h
parentmsg: add msg_send_from_argv shortcut (diff)
downloadcimple-9afecc03260a938fa57389ce3adffa5052df8076.tar.gz
cimple-9afecc03260a938fa57389ce3adffa5052df8076.zip
STAILQ -> SIMPLEQ
Diffstat (limited to 'src/worker_queue.h')
-rw-r--r--src/worker_queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/worker_queue.h b/src/worker_queue.h
index 826cf65..382d777 100644
--- a/src/worker_queue.h
+++ b/src/worker_queue.h
@@ -17,7 +17,7 @@ void worker_destroy(struct worker *);
int worker_get_fd(const struct worker *);
-STAILQ_HEAD(worker_queue, worker);
+SIMPLEQ_HEAD(worker_queue, worker);
void worker_queue_create(struct worker_queue *);
void worker_queue_destroy(struct worker_queue *);