aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrea Bastoni <bastoni@cs.unc.edu>2011-08-26 09:44:22 -0400
committerAndrea Bastoni <bastoni@sprg.uniroma2.it>2011-11-25 11:23:24 -0500
commitcb37cacc809a847acd20e5682183e76e6ff61b1b (patch)
tree631cfa55226411fe6aca9bafd190e9ed4e161164 /include
parent11e46234ce711665f75246d026631bcd6c946e44 (diff)
Refactor sched_trace_log_message() -> debug_trace_log_message()wip-2011.2-bbb-trace
Diffstat (limited to 'include')
-rw-r--r--include/litmus/debug_trace.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/litmus/debug_trace.h b/include/litmus/debug_trace.h
index bcf5a47f47cc..570460f35514 100644
--- a/include/litmus/debug_trace.h
+++ b/include/litmus/debug_trace.h
@@ -2,11 +2,11 @@
2#define LITMUS_DEBUG_TRACE_H 2#define LITMUS_DEBUG_TRACE_H
3 3
4#ifdef CONFIG_LITMUS_DEBUG_TRACE 4#ifdef CONFIG_LITMUS_DEBUG_TRACE
5void sched_trace_log_message(const char* fmt, ...); 5void debug_trace_log_message(const char* fmt, ...);
6void dump_trace_buffer(int max); 6void dump_trace_buffer(int max);
7#else 7#else
8 8
9#define sched_trace_log_message(fmt, ...) 9#define debug_trace_log_message(fmt, ...)
10 10
11#endif 11#endif
12 12
@@ -24,7 +24,7 @@ extern atomic_t __log_seq_no;
24#endif 24#endif
25 25
26#define TRACE(fmt, args...) \ 26#define TRACE(fmt, args...) \
27 sched_trace_log_message(TRACE_PREFIX fmt, \ 27 debug_trace_log_message(TRACE_PREFIX fmt, \
28 TRACE_ARGS, ## args) 28 TRACE_ARGS, ## args)
29 29
30#define TRACE_TASK(t, fmt, args...) \ 30#define TRACE_TASK(t, fmt, args...) \