chore: rename event loop states

This commit is contained in:
Jef Roosens 2024-02-14 12:07:14 +01:00
parent 64601b5f21
commit 1b8ba305b5
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 31 additions and 31 deletions

View file

@ -12,11 +12,11 @@
#define LNM_QUEUE_MULTIPLIER 8
typedef enum lnm_loop_state {
lnm_loop_state_req = 0,
lnm_loop_state_res,
lnm_loop_state_req_io = 0,
lnm_loop_state_res_io,
lnm_loop_state_end,
lnm_loop_state_req_blocking,
lnm_loop_state_res_blocking,
lnm_loop_state_req_work,
lnm_loop_state_res_work,
} lnm_loop_state;
/**