diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-10-07 18:49:22 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-10-07 18:49:22 -0400 |
commit | 61ce17e3edbf33e49adb5536c9904b735e58c774 (patch) | |
tree | e79c20f3049791fbe7417a436fc9b4e8be0f7d96 /litmus/ce_domain.c | |
parent | 054b92b95cfc2249ff7c1b110fb9aee8fa43378c (diff) |
Newline consistency...
Diffstat (limited to 'litmus/ce_domain.c')
-rw-r--r-- | litmus/ce_domain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/litmus/ce_domain.c b/litmus/ce_domain.c index 54a4a18e01b..c3ddc9dd63a 100644 --- a/litmus/ce_domain.c +++ b/litmus/ce_domain.c | |||
@@ -27,15 +27,15 @@ void ce_requeue(domain_t *dom, struct task_struct *ts) | |||
27 | const int asleep = RT_F_SLEEP == get_rt_flags(ts); | 27 | const int asleep = RT_F_SLEEP == get_rt_flags(ts); |
28 | 28 | ||
29 | TRACE_MC_TASK(ts, "entered ce_requeue. asleep: %d just_finished: %3u " | 29 | TRACE_MC_TASK(ts, "entered ce_requeue. asleep: %d just_finished: %3u " |
30 | "expected_job: %3u", | 30 | "expected_job: %3u\n", |
31 | asleep, just_finished, expected_job); | 31 | asleep, just_finished, expected_job); |
32 | 32 | ||
33 | /* When coming from job completion, the task will be asleep. */ | 33 | /* When coming from job completion, the task will be asleep. */ |
34 | if (asleep && just_finished < expected_job) { | 34 | if (asleep && just_finished < expected_job) { |
35 | TRACE_MC_TASK(ts, "appears behind"); | 35 | TRACE_MC_TASK(ts, "appears behind\n"); |
36 | } else if (asleep && expected_job < just_finished) { | 36 | } else if (asleep && expected_job < just_finished) { |
37 | TRACE_MC_TASK(ts, "job %u completed in expected job %u which " | 37 | TRACE_MC_TASK(ts, "job %u completed in expected job %u which " |
38 | "seems too early", just_finished, | 38 | "seems too early\n", just_finished, |
39 | expected_job); | 39 | expected_job); |
40 | } | 40 | } |
41 | } | 41 | } |