replace "locking" by "executing" as we don't have only mutex
Signed-off-by: Vincent Guittot vincent.guittot@linaro.org --- src/rt-app.c | 4 ++-- 1 file 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); }