diff options
author | Andrea Bastoni <bastoni@sprg.uniroma2.it> | 2011-11-25 11:16:18 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@sprg.uniroma2.it> | 2011-11-25 11:16:18 -0500 |
commit | 11e46234ce711665f75246d026631bcd6c946e44 (patch) | |
tree | 53926e2622e7be083f12a958319eaf799d18b70c /litmus/sync.c | |
parent | 5bd89a34d89f252619d83fef3c9325e24311389e (diff) |
Refactor tracing and debugging filenames + CONFIG macros
Tracing and Debugging filenames in Litmus were a bit clumsy. Particularly
it was not immediate to tell the content of a tracing/debugging file from
its name, and it was not intuitive to navigate through the CONFIG
macros. This commit refactors tracing/debugging filenames and the
corresponging CONFIG macros to more intuitive names.
Overhead Tracing (employs Feather Trace):
renamed: include/litmus/trace.h -> include/litmus/sched_trace_ohead.h
renamed: litmus/trace.c -> litmus/sched_trace_ohead.c
Scheduling-related tracing (employs Feather Trace):
renamed: include/litmus/sched_trace.h -> include/litmus/sched_trace_task.h
renamed: litmus/sched_task_trace.c -> litmus/sched_trace_task.c
Debugging (TRACE() macro):
renamed: litmus/sched_trace.c -> litmus/debug_trace.c
Diffstat (limited to 'litmus/sync.c')
-rw-r--r-- | litmus/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/sync.c b/litmus/sync.c index bf75fde5450b..bf76d2f778ac 100644 --- a/litmus/sync.c +++ b/litmus/sync.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <litmus/sched_plugin.h> | 14 | #include <litmus/sched_plugin.h> |
15 | #include <litmus/jobs.h> | 15 | #include <litmus/jobs.h> |
16 | 16 | ||
17 | #include <litmus/sched_trace.h> | 17 | #include <litmus/sched_trace_task.h> |
18 | 18 | ||
19 | static DECLARE_COMPLETION(ts_release); | 19 | static DECLARE_COMPLETION(ts_release); |
20 | 20 | ||