diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-11-13 08:30:31 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-11-14 14:52:33 -0500 |
commit | 7da5c85dd34dd67846fec965e4bf1f761eecca05 (patch) | |
tree | 65e45f829df49b79a3222a60a56bb62bdd8fd65d /tools/perf/ui | |
parent | 534123f458f196bcc269f97d20ccf125925c2e7b (diff) |
perf ui tui: Move progress.c under ui/tui directory
Current ui_progress functions are implemented for TUI only. So move the
file under the tui directory. This is needed for providing an UI-
agnostic wrapper.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1352813436-14173-1-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui')
-rw-r--r-- | tools/perf/ui/tui/progress.c (renamed from tools/perf/ui/progress.c) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/ui/progress.c b/tools/perf/ui/tui/progress.c index 13aa64e50e11..f8dc986e427d 100644 --- a/tools/perf/ui/progress.c +++ b/tools/perf/ui/tui/progress.c | |||
@@ -1,8 +1,8 @@ | |||
1 | #include "../cache.h" | 1 | #include "../cache.h" |
2 | #include "progress.h" | 2 | #include "../progress.h" |
3 | #include "libslang.h" | 3 | #include "../libslang.h" |
4 | #include "ui.h" | 4 | #include "../ui.h" |
5 | #include "browser.h" | 5 | #include "../browser.h" |
6 | 6 | ||
7 | void ui_progress__update(u64 curr, u64 total, const char *title) | 7 | void ui_progress__update(u64 curr, u64 total, const char *title) |
8 | { | 8 | { |