diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-21 12:23:57 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-29 17:20:00 -0400 |
commit | ee09f78d8faa0b988088d93142e6f5f8a6e75394 (patch) | |
tree | bc1e0b5db121be3de47d967973310d610ad943a2 /litmus/edf_common.c | |
parent | 0b28a3122d6917784701377e15a863489aee1c6c (diff) |
Refactor binomial heap names: heap -> bheap
- Binomial heap "heap" names conflicted with priority heap
of cgroup in kernel
- This patch change binomial heap "heap" names in "bheap"
Diffstat (limited to 'litmus/edf_common.c')
-rw-r--r-- | litmus/edf_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/litmus/edf_common.c b/litmus/edf_common.c index 97e37761cedc..06daec66c984 100644 --- a/litmus/edf_common.c +++ b/litmus/edf_common.c | |||
@@ -68,9 +68,9 @@ int edf_higher_prio(struct task_struct* first, | |||
68 | !second->rt_param.inh_task)))); | 68 | !second->rt_param.inh_task)))); |
69 | } | 69 | } |
70 | 70 | ||
71 | int edf_ready_order(struct heap_node* a, struct heap_node* b) | 71 | int edf_ready_order(struct bheap_node* a, struct bheap_node* b) |
72 | { | 72 | { |
73 | return edf_higher_prio(heap2task(a), heap2task(b)); | 73 | return edf_higher_prio(bheap2task(a), bheap2task(b)); |
74 | } | 74 | } |
75 | 75 | ||
76 | void edf_domain_init(rt_domain_t* rt, check_resched_needed_t resched, | 76 | void edf_domain_init(rt_domain_t* rt, check_resched_needed_t resched, |