diff options
author | Bjoern Brandenburg <bb@DS-12.(none)> | 2007-02-01 23:59:14 -0500 |
---|---|---|
committer | Bjoern Brandenburg <bb@DS-12.(none)> | 2007-02-01 23:59:14 -0500 |
commit | ea1d83087015d64e7d36e87eacf2c2388fbe3281 (patch) | |
tree | 23e151be8d4eb15fadc3808c52d7d4ef2c3722de /include | |
parent | 212eadc8a7acff695f1c699611681a490b477f65 (diff) |
some explanation
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched_plugin.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/sched_plugin.h b/include/linux/sched_plugin.h index 382f940e1e..93bcdf3e00 100644 --- a/include/linux/sched_plugin.h +++ b/include/linux/sched_plugin.h | |||
@@ -7,7 +7,13 @@ | |||
7 | 7 | ||
8 | #include <linux/sched.h> | 8 | #include <linux/sched.h> |
9 | 9 | ||
10 | /* CLEANUP: should be in sched.h */ | 10 | /* Enforce runqueues to be opaque objects. |
11 | * | ||
12 | * This allows us to pass around pointers to runqueues, | ||
13 | * without actually having to rip it out of sched.c. It | ||
14 | * also discourages plugins from trying to be | ||
15 | * overly clever. | ||
16 | */ | ||
11 | typedef void runqueue_t; | 17 | typedef void runqueue_t; |
12 | 18 | ||
13 | /********************* real-time callbacks ********************/ | 19 | /********************* real-time callbacks ********************/ |