diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2013-03-11 03:43:17 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-03-15 12:06:03 -0400 |
commit | 55e162ea764cb5b38f27ea0b16ee7d31c1a5aedb (patch) | |
tree | df235ecf6b0fdde18bf6bc7f1088404073ba2e93 /tools/perf/builtin-record.c | |
parent | 119fa3c922ff53a334507e198b2e3c66e99f54dc (diff) |
perf evlist: Add want_signal parameter to perf_evlist__prepare_workload()
In case a caller doesn't want to receive SIGUSR1 when the child failed
to exec().
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1362987798-24969-6-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r-- | tools/perf/builtin-record.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 2a43c4423f6a..80cc3ea07788 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c | |||
@@ -475,7 +475,8 @@ static int __cmd_record(struct perf_record *rec, int argc, const char **argv) | |||
475 | 475 | ||
476 | if (forks) { | 476 | if (forks) { |
477 | err = perf_evlist__prepare_workload(evsel_list, &opts->target, | 477 | err = perf_evlist__prepare_workload(evsel_list, &opts->target, |
478 | argv, opts->pipe_output); | 478 | argv, opts->pipe_output, |
479 | true); | ||
479 | if (err < 0) { | 480 | if (err < 0) { |
480 | pr_err("Couldn't run the workload!\n"); | 481 | pr_err("Couldn't run the workload!\n"); |
481 | goto out_delete_session; | 482 | goto out_delete_session; |