diff options
author | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-04-27 13:46:04 -0400 |
---|---|---|
committer | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-04-27 13:46:04 -0400 |
commit | a2c1032ffa1561741c7c9ebe8ac083b95142b4ee (patch) | |
tree | d3c85b7c49dce7435b7bb373defa738476dabe86 /kernel | |
parent | a659c1befd8744f857742e97868fb3a0c5cf70fc (diff) |
Fixed bug related to not initializing pointers to PI-related functions in
curr_sched_plugin.
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched_plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/sched_plugin.c b/kernel/sched_plugin.c index 68e2d6effc..8170d6e1df 100644 --- a/kernel/sched_plugin.c +++ b/kernel/sched_plugin.c | |||
@@ -107,7 +107,9 @@ sched_plugin_t linux_sched_plugin = { | |||
107 | .shutdown_hook = 0, | 107 | .shutdown_hook = 0, |
108 | .schedule = litmus_dummy_schedule, | 108 | .schedule = litmus_dummy_schedule, |
109 | .finish_switch = litmus_dummy_finish_switch, | 109 | .finish_switch = litmus_dummy_finish_switch, |
110 | .scheduler_setup = litmus_dummy_scheduler_setup | 110 | .scheduler_setup = litmus_dummy_scheduler_setup, |
111 | .inherit_priority = litmus_dummy_inherit_priority, | ||
112 | .return_priority = litmus_dummy_return_priority | ||
111 | }; | 113 | }; |
112 | 114 | ||
113 | /* | 115 | /* |