summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorSteven Rostedt2008-05-12 21:20:41 +0200
committerThomas Gleixner2008-05-23 20:31:05 +0200
commit7c731e0a495e25e79dc1e9e68772a67a55721a65 (patch)
tree6d61a9a01708a8174d2b0badaee8df1153449be8 /kernel
parentsched: add latency tracer callbacks to the scheduler (diff)
downloadkernel-qcow2-linux-7c731e0a495e25e79dc1e9e68772a67a55721a65.tar.gz
kernel-qcow2-linux-7c731e0a495e25e79dc1e9e68772a67a55721a65.tar.xz
kernel-qcow2-linux-7c731e0a495e25e79dc1e9e68772a67a55721a65.zip
ftrace: make the task state char-string visible to all
The tracer wants to be able to convert the state number into a user visible character. This patch pulls that conversion string out the scheduler into the header. This way if it were to ever change, other parts of the kernel will know. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 463dcdb36ef8..73e600852365 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5729,7 +5729,7 @@ out_unlock:
return retval;
}
-static const char stat_nam[] = "RSDTtZX";
+static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
void sched_show_task(struct task_struct *p)
{