From 337ec809393b709b36ca7b64d77489ae4bc1af1c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 27 May 2023 09:44:14 +0200 Subject: More scheduling and probabilisticity --- inc/lib/pqueue.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'inc/lib/pqueue.h') diff --git a/inc/lib/pqueue.h b/inc/lib/pqueue.h index c576ee3..86c4080 100644 --- a/inc/lib/pqueue.h +++ b/inc/lib/pqueue.h @@ -104,4 +104,12 @@ int pqueue_insert(struct pqueue *q, void *d); */ void *pqueue_pop(struct pqueue *q); +/** + * pop an item from the queue at a position + * @param q the queue + * @param p the position + * @return NULL on error, otherwise the entry + */ +void *pqueue_pop_at(struct pqueue *q, size_t p); + #endif -- cgit v1.2.3