diff options
author | Marvin Borner | 2023-05-27 09:44:14 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-27 09:44:14 +0200 |
commit | 337ec809393b709b36ca7b64d77489ae4bc1af1c (patch) | |
tree | 4e6eb71eaa8e81c4b08b8d23938e1609ff5d91a6 /inc/lib/pqueue.h | |
parent | ac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (diff) |
More scheduling and probabilisticity
Diffstat (limited to 'inc/lib/pqueue.h')
-rw-r--r-- | inc/lib/pqueue.h | 8 |
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 |