remove wrong code to realize a fast lane for driver tasks

This commit is contained in:
Stefan Lankes 2011-09-01 21:31:44 +02:00
parent 4fe793e607
commit 470039bd17

View file

@ -283,7 +283,4 @@ leave_handler:
// timer interrupt?
if ((s->int_no == 32) || (s->int_no == 123))
scheduler(); // switch to a new task
// exists a new (driver) task with a higher priority?
else if ((s->int_no >= 32) && (get_highest_priority(CORE_ID) > per_core(current_task)->prio))
scheduler();
}