aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-09-11 22:01:26 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-09-11 22:01:26 -0400
commit85396eb1ff28d4af26fd02c78fd7582cc5de6050 (patch)
tree4c27b837576a06c087b7ab8539cb04cf65ac8dcf /include
parentdcf7ba77000800ab4e16b17b4f65abd05aebcbdd (diff)
cleanup: fix some sloppiness spotted by John
This patch fixes some minor issues that inadvertedly crept in during development. Found in John's review.
Diffstat (limited to 'include')
-rw-r--r--include/litmus/rt_domain.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/litmus/rt_domain.h b/include/litmus/rt_domain.h
index 84d71d40d9..7356ec7ca4 100644
--- a/include/litmus/rt_domain.h
+++ b/include/litmus/rt_domain.h
@@ -24,9 +24,10 @@ struct release_heap {
24}; 24};
25 25
26struct release_queue { 26struct release_queue {
27 /* each slot maintains a list of release heaps sorted by release time */ 27 /* each slot maintains a list of release heaps sorted
28 * by release time */
28 struct list_head slot[RELEASE_QUEUE_SLOTS]; 29 struct list_head slot[RELEASE_QUEUE_SLOTS];
29 /* the heap of heaps orderd by release time */ 30 /* the heap of heaps ordered by release time */
30 struct heap rel_heap; 31 struct heap rel_heap;
31 /* the actual timer used to trigger releases */ 32 /* the actual timer used to trigger releases */
32 struct hrtimer timer; 33 struct hrtimer timer;