/* SPDX-License-Identifier: GPL-2.0 */ #ifndef ARRAY_SIZE_H #define ARRAY_SIZE_H /** * ARRAY_SIZE - get the number of elements in array @arr * @arr: array to be sized */ #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) #endif /* ARRAY_SIZE_H */ ev/distro/kernel/atom/tools/perf/scripts/python/bin/export-to-sqlite-report?h=0x221E-v0.0-v7.0' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/export-to-sqlite-report
AgeCommit message (Expand)Author
2017-08-15perf script python: Add support for exporting to sqlite3Adrian Hunter