aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/util.c
diff options
context:
space:
mode:
authorJosh Poimboeuf <jpoimboe@redhat.com>2015-12-07 23:21:42 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-12-09 11:42:02 -0500
commit1fe143c5f928e3d117355ce2655bac0eb80c1aa3 (patch)
treedf1fbb6a11a025accf2556684d20e03d4a260506 /tools/perf/util/util.c
parentde7cf7cadca3a3c32c1f1dbf4593a54f236e2dcf (diff)
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/util.c')
-rw-r--r--tools/perf/util/util.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c
index 75759aebc7b8..07da970a62a3 100644
--- a/tools/perf/util/util.c
+++ b/tools/perf/util/util.c
@@ -355,40 +355,6 @@ void sighandler_dump_stack(int sig)
355 exit(sig); 355 exit(sig);
356} 356}
357 357
358void get_term_dimensions(struct winsize *ws)
359{
360 char *s = getenv("LINES");
361
362 if (s != NULL) {
363 ws->ws_row = atoi(s);
364 s = getenv("COLUMNS");
365 if (s != NULL) {
366 ws->ws_col = atoi(s);
367 if (ws->ws_row && ws->ws_col)
368 return;
369 }
370 }
371#ifdef TIOCGWINSZ
372 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
373 ws->ws_row && ws->ws_col)
374 return;
375#endif
376 ws->ws_row = 25;
377 ws->ws_col = 80;
378}
379
380void set_term_quiet_input(struct termios *old)
381{
382 struct termios tc;
383
384 tcgetattr(0, old);
385 tc = *old;
386 tc.c_lflag &= ~(ICANON | ECHO);
387 tc.c_cc[VMIN] = 0;
388 tc.c_cc[VTIME] = 0;
389 tcsetattr(0, TCSANOW, &tc);
390}
391
392int parse_nsec_time(const char *str, u64 *ptime) 358int parse_nsec_time(const char *str, u64 *ptime)
393{ 359{
394 u64 time_sec, time_nsec; 360 u64 time_sec, time_nsec;