xref: /linux/tools/perf/scripts/python/bin/syscall-counts-by-pid-report (revision 79e653f1bf2e52d12a952366e782dadf590b9d1d)
14d161f03STom Zanussi#!/bin/bash
24d161f03STom Zanussi# description: system-wide syscall counts, by pid
34d161f03STom Zanussi# args: [comm]
400b21a01STom Zanussiif [ $# -gt 0 ] ; then
5*79e653f1STom Zanussi    if ! expr match "$1" "-" > /dev/null ; then
600b21a01STom Zanussi	comm=$1
700b21a01STom Zanussi	shift
800b21a01STom Zanussi    fi
900b21a01STom Zanussifi
1000b21a01STom Zanussiperf trace $@ -s ~/libexec/perf-core/scripts/python/syscall-counts-by-pid.py $comm
11