aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/heap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus/heap.h')
-rw-r--r--include/litmus/heap.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/litmus/heap.h b/include/litmus/heap.h
index 19230f550f..da959b0bec 100644
--- a/include/litmus/heap.h
+++ b/include/litmus/heap.h
@@ -1,6 +1,6 @@
1/* heaps.h -- Binomial Heaps 1/* heaps.h -- Binomial Heaps
2 * 2 *
3 * (c) 2008 Bjoern Brandenburg 3 * (c) 2008, 2009 Bjoern Brandenburg
4 */ 4 */
5 5
6#ifndef HEAP_H 6#ifndef HEAP_H
@@ -57,6 +57,9 @@ struct heap_node* heap_peek(heap_prio_t higher_prio,
57struct heap_node* heap_take(heap_prio_t higher_prio, 57struct heap_node* heap_take(heap_prio_t higher_prio,
58 struct heap* heap); 58 struct heap* heap);
59 59
60void heap_uncache_min(heap_prio_t higher_prio, struct heap* heap);
61int heap_decrease(heap_prio_t higher_prio, struct heap_node* node);
62
60void heap_delete(heap_prio_t higher_prio, 63void heap_delete(heap_prio_t higher_prio,
61 struct heap* heap, 64 struct heap* heap,
62 struct heap_node* node); 65 struct heap_node* node);