perf scripting python: Use Py_FatalError instead of die()
It probably is equivalent, but that seems to be the "pythonic" way of dieing? Anyway, one less die() in the tools/perf codebase. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Cc: Chris Phlipot <cphlipot0@gmail.com> Link: http://lkml.kernel.org/n/tip-nlzgepdv2818zs4e7faif9tu@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
38f5d8b32f
commit
62665dff75
1 changed files with 5 additions and 2 deletions
|
@ -408,8 +408,11 @@ static void python_process_tracepoint(struct perf_sample *sample,
|
|||
if (!t)
|
||||
Py_FatalError("couldn't create Python tuple");
|
||||
|
||||
if (!event)
|
||||
die("ug! no event found for type %d", (int)evsel->attr.config);
|
||||
if (!event) {
|
||||
snprintf(handler_name, sizeof(handler_name),
|
||||
"ug! no event found for type %" PRIu64, (u64)evsel->attr.config);
|
||||
Py_FatalError(handler_name);
|
||||
}
|
||||
|
||||
pid = raw_field_value(event, "common_pid", data);
|
||||
|
||||
|
|
Loading…
Reference in a new issue