feat: add blocking step support to http loop

This commit is contained in:
Jef Roosens 2024-02-01 18:42:29 +01:00
parent 9c01548256
commit a96ae39523
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 36 additions and 8 deletions

View file

@ -47,6 +47,7 @@ typedef struct lnm_loop_queue {
} buf;
size_t head;
size_t tail;
bool empty;
pthread_mutex_t mutex;
pthread_cond_t cond;
} lnm_loop_queue;