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 /include/litmus/rt_param.h | |
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 'include/litmus/rt_param.h')
-rw-r--r-- | include/litmus/rt_param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index c599f848d1ed..e20427846273 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -39,7 +39,7 @@ struct rt_task { | |||
39 | #ifdef __KERNEL__ | 39 | #ifdef __KERNEL__ |
40 | 40 | ||
41 | struct _rt_domain; | 41 | struct _rt_domain; |
42 | struct heap_node; | 42 | struct bheap_node; |
43 | struct release_heap; | 43 | struct release_heap; |
44 | 44 | ||
45 | struct rt_job { | 45 | struct rt_job { |
@@ -157,7 +157,7 @@ struct rt_param { | |||
157 | * other than this pointer (which is updated by the heap | 157 | * other than this pointer (which is updated by the heap |
158 | * implementation). | 158 | * implementation). |
159 | */ | 159 | */ |
160 | struct heap_node* heap_node; | 160 | struct bheap_node* heap_node; |
161 | struct release_heap* rel_heap; | 161 | struct release_heap* rel_heap; |
162 | 162 | ||
163 | /* Used by rt_domain to queue task in release list. | 163 | /* Used by rt_domain to queue task in release list. |