aboutsummaryrefslogtreecommitdiff
path: root/inc/lib/pqueue.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 09:44:14 +0200
committerMarvin Borner2023-05-27 09:44:14 +0200
commit337ec809393b709b36ca7b64d77489ae4bc1af1c (patch)
tree4e6eb71eaa8e81c4b08b8d23938e1609ff5d91a6 /inc/lib/pqueue.h
parentac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (diff)
More scheduling and probabilisticity
Diffstat (limited to 'inc/lib/pqueue.h')
-rw-r--r--inc/lib/pqueue.h8
1 files changed, 8 insertions, 0 deletions
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