plat_sem_destroy(&q->items_sem);

This commit is contained in:
2026-03-09 17:27:45 +01:00
parent 7d8b4addb7
commit f3c4cb7b76
3 changed files with 63 additions and 6 deletions

View File

@@ -29,3 +29,5 @@ Small improvements of the LF MPMC queue
Making the LF MPMC queue generic and in a seperate header file
4.0: Implementing a semaphore in the LF MPMC queue to wake up consumers when there is items in the queue instead of spinning (busy waiting) or sleeping, this makes the queue spin only when the slots are transitionning (multiple consumers claiming the same slot)
Making the MPMC queue platform agnostic