Fix missed items in thread queue

This commit is contained in:
Filip Tibell 2024-02-13 11:10:44 +01:00
parent 7c59d0c722
commit 71026f9692
No known key found for this signature in database

View file

@ -60,7 +60,12 @@ impl ThreadQueue {
#[inline] #[inline]
pub async fn wait_for_item(&self) { pub async fn wait_for_item(&self) {
if self.queue.is_empty() { if self.queue.is_empty() {
self.event.listen().await; let listener = self.event.listen();
// NOTE: Need to check again, we could have gotten
// new queued items while creating our listener
if self.queue.is_empty() {
listener.await;
}
} }
} }