aboutsummaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-18 13:39:56 -0700
committerChristian Cunningham <cc@localhost>2022-03-18 13:39:56 -0700
commit0c3837ef8fe77b0d65094f6a2cf3d7b17bcc7cbf (patch)
treeaa018a9f606b7e983700d6268bb444ddaf020b5d /include/lib
parent74f95c5696335b02d768815fea2940bf089d057f (diff)
Added mutex management queues
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/queue.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib/queue.h b/include/lib/queue.h
index 5e57613..1d4899a 100644
--- a/include/lib/queue.h
+++ b/include/lib/queue.h
@@ -27,6 +27,7 @@ struct Entry* pop_from_queue(struct Queue* q);
// Remove the entry after this one from its queue
struct Entry* remove_next_from_queue(struct Entry* e);
// Find an entry in a queue
+// Returns the entry before the target entry
struct Entry* find_value(void* value, struct Queue* q);
#endif