summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVincent Guittot <vincent.guittot@linaro.org>2015-03-19 13:32:32 +0100
committerVincent Guittot <vincent.guittot@linaro.org>2015-03-24 11:42:51 +0100
commita246a4d94488dafce30e719f0201d7ae166c882b (patch)
tree669711f5fb2d3d22b87576ece2f808e77e8b1320 /src
parent5ae13aad4bfd7643b149c925fac335caaa90e32f (diff)
rt-app: fix ftrace log
replace "locking" by "executing" as we don't have only mutex Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
Diffstat (limited to 'src')
-rw-r--r--src/rt-app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt-app.c b/src/rt-app.c
index a867214..97aee0f 100644
--- a/src/rt-app.c
+++ b/src/rt-app.c
@@ -222,8 +222,8 @@ int run(int ind, event_data_t *events,
log_debug("[%d] runs events %d type %d ", ind, i, events[i].type);
if (opts.ftrace)
log_ftrace(ft_data.marker_fd,
- "[%d] locking %d",
- ind, events[i].type);
+ "[%d] executing %d",
+ ind, i);
lock += run_event(&events[i], !continue_running, &perf, duration, resources);
}