[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1407747014-18394-15-git-send-email-jolsa@kernel.org>
Date: Mon, 11 Aug 2014 10:50:08 +0200
From: Jiri Olsa <jolsa@...nel.org>
To: linux-kernel@...r.kernel.org
Cc: Jiri Olsa <jolsa@...nel.org>,
Adrian Hunter <adrian.hunter@...el.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
David Ahern <dsahern@...il.com>,
Frederic Weisbecker <fweisbec@...il.com>,
Ingo Molnar <mingo@...nel.org>,
Jean Pihet <jean.pihet@...aro.org>,
Namhyung Kim <namhyung@...nel.org>,
Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>
Subject: [PATCH 14/20] perf top: Use poller object for display thread stdin
Using poller object to handle user input for stdio top.
Cc: Adrian Hunter <adrian.hunter@...el.com>
Cc: Arnaldo Carvalho de Melo <acme@...nel.org>
Cc: Corey Ashford <cjashfor@...ux.vnet.ibm.com>
Cc: David Ahern <dsahern@...il.com>
Cc: Frederic Weisbecker <fweisbec@...il.com>
Cc: Ingo Molnar <mingo@...nel.org>
Cc: Jean Pihet <jean.pihet@...aro.org>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Signed-off-by: Jiri Olsa <jolsa@...nel.org>
---
tools/perf/builtin-top.c | 43 +++++++++++++++++++------------------------
1 file changed, 19 insertions(+), 24 deletions(-)
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 9b4edf0bd49f..8d0ed211fd7b 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -422,26 +422,22 @@ static int perf_top__key_mapped(struct perf_top *top, int c)
return 0;
}
-static bool perf_top__handle_keypress(struct perf_top *top, int c)
+static bool perf_top__handle_keypress(struct perf_top *top, int c,
+ struct poller *poller)
{
bool ret = true;
if (!perf_top__key_mapped(top, c)) {
- struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
- struct termios tc, save;
+ struct termios save;
perf_top__print_mapped_keys(top);
fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
fflush(stdout);
- tcgetattr(0, &save);
- tc = save;
- tc.c_lflag &= ~(ICANON | ECHO);
- tc.c_cc[VMIN] = 0;
- tc.c_cc[VTIME] = 0;
- tcsetattr(0, TCSANOW, &tc);
+ set_term_quiet_input(&save);
+ if (poller__poll(poller, -1) < 0)
+ return 0;
- poll(&stdin_poll, 1, -1);
c = getc(stdin);
tcsetattr(0, TCSAFLUSH, &save);
@@ -595,11 +591,19 @@ static void display_setup_sig(void)
static void *display_thread(void *arg)
{
- struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
+ struct poller poller;
+ struct poller_item in = {
+ .fd = fileno(stdin),
+ };
struct termios save;
struct perf_top *top = arg;
int delay_msecs, c;
+ if (poller__add(&poller, &in)) {
+ done = 1;
+ return NULL;
+ }
+
display_setup_sig();
pthread__unblock_sigwinch();
repeat:
@@ -610,23 +614,14 @@ repeat:
while (!done) {
perf_top__print_sym_table(top);
- /*
- * Either timeout expired or we got an EINTR due to SIGWINCH,
- * refresh screen in both cases.
- */
- switch (poll(&stdin_poll, 1, delay_msecs)) {
- case 0:
- continue;
- case -1:
- if (errno == EINTR)
- continue;
- /* Fall trhu */
- default:
+
+ if (poller__poll(&poller, delay_msecs) > 0) {
c = getc(stdin);
tcsetattr(0, TCSAFLUSH, &save);
- if (perf_top__handle_keypress(top, c))
+ if (perf_top__handle_keypress(top, c, &poller))
goto repeat;
+
done = 1;
}
}
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists