diff options
author | Mac Mollison <mollison@cs.unc.edu> | 2010-10-04 15:13:27 -0400 |
---|---|---|
committer | Mac Mollison <mollison@cs.unc.edu> | 2010-10-04 15:13:27 -0400 |
commit | 4cb649ead690246a22529acf6cfec7ab0e744d31 (patch) | |
tree | 0fe8def5fa58d93ad04e3561cb8cdfebfc1322d3 | |
parent | 828246abc429cd6ea6f3c8dcc8333524a799e880 (diff) |
Bugfix
-rw-r--r-- | litmus/edf_common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/litmus/edf_common.c b/litmus/edf_common.c index 5dc8759b56d0..f260284e0f76 100644 --- a/litmus/edf_common.c +++ b/litmus/edf_common.c | |||
@@ -50,9 +50,7 @@ int edf_higher_prio(struct task_struct* first, | |||
50 | */ | 50 | */ |
51 | !second_task || !is_realtime(second_task) || | 51 | !second_task || !is_realtime(second_task) || |
52 | 52 | ||
53 | TRACE("About to do criticality comparison"); | ||
54 | get_crit(first_task) < get_crit(second_task) || | 53 | get_crit(first_task) < get_crit(second_task) || |
55 | TRACE("Completed criticality comparison"); | ||
56 | 54 | ||
57 | /* is the deadline of the first task earlier? | 55 | /* is the deadline of the first task earlier? |
58 | * Then it has higher priority. | 56 | * Then it has higher priority. |