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/rt_domain.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/rt_domain.c')
-rw-r--r-- | litmus/rt_domain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/litmus/rt_domain.c b/litmus/rt_domain.c index d405854cd39c..3b777d539812 100644 --- a/litmus/rt_domain.c +++ b/litmus/rt_domain.c | |||
@@ -13,11 +13,11 @@ | |||
13 | 13 | ||
14 | #include <litmus/litmus.h> | 14 | #include <litmus/litmus.h> |
15 | #include <litmus/sched_plugin.h> | 15 | #include <litmus/sched_plugin.h> |
16 | #include <litmus/sched_trace.h> | 16 | #include <litmus/sched_trace_task.h> |
17 | 17 | ||
18 | #include <litmus/rt_domain.h> | 18 | #include <litmus/rt_domain.h> |
19 | 19 | ||
20 | #include <litmus/trace.h> | 20 | #include <litmus/sched_trace_ohead.h> |
21 | 21 | ||
22 | #include <litmus/bheap.h> | 22 | #include <litmus/bheap.h> |
23 | 23 | ||