aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/term.h
diff options
context:
space:
mode:
authorJosh Poimboeuf <jpoimboe@redhat.com>2015-12-07 22:21:42 -0600
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-12-09 13:42:02 -0300
commit1fe143c5f928e3d117355ce2655bac0eb80c1aa3 (patch)
treedf1fbb6a11a025accf2556684d20e03d4a260506 /tools/perf/util/term.h
parentperf tools: Remove unused pager_use_color variable (diff)
downloadlinux-dev-1fe143c5f928e3d117355ce2655bac0eb80c1aa3.tar.xz
linux-dev-1fe143c5f928e3d117355ce2655bac0eb80c1aa3.zip
perf tools: Move term functions out of util.c
The term functions are needed by help.c which is going to be moved into a separate library. Move them out of util.c and into their own file. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/9a39c854dd156b55ebda57e427594c9a59dcb40f.1449548395.git.jpoimboe@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/term.h')
-rw-r--r--tools/perf/util/term.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/term.h b/tools/perf/util/term.h
new file mode 100644
index 000000000000..2c06a61846a1
--- /dev/null
+++ b/tools/perf/util/term.h
@@ -0,0 +1,10 @@
+#ifndef __PERF_TERM_H
+#define __PERF_TERM_H
+
+struct termios;
+struct winsize;
+
+void get_term_dimensions(struct winsize *ws);
+void set_term_quiet_input(struct termios *old);
+
+#endif /* __PERF_TERM_H */