Check for target existence in loop control statement jointly with 'stop'
indicator based on command line values and external asynchronous 'done'
signal.

Signed-off-by: Alexey Budankov <alexey.budan...@linux.intel.com>
---
 tools/perf/builtin-stat.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index c74e8f94375c..3baf00482666 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -816,10 +816,8 @@ static int __run_perf_stat(int argc, const char **argv, 
int run_idx)
                        psignal(WTERMSIG(status), argv[0]);
        } else {
                enable_counters();
-               while (!done && !stop) {
+               while (!done && !stop && is_target_alive(&target, 
evsel_list->core.threads)) {
                        nanosleep(&ts, NULL);
-                       if (!is_target_alive(&target, evsel_list->core.threads))
-                               break;
                        if (timeout)
                                break;
                        stop = handle_interval(interval, &times);
-- 
2.24.1


Reply via email to