14d161f03STom Zanussi#!/bin/bash 24d161f03STom Zanussi# description: system-wide syscall counts 34d161f03STom Zanussi# args: [comm] 400b21a01STom Zanussiif [ $# -gt 0 ] ; then 5e61a639aSTom Zanussi if ! expr match "$1" "-" > /dev/null ; then 600b21a01STom Zanussi comm=$1 700b21a01STom Zanussi shift 800b21a01STom Zanussi fi 900b21a01STom Zanussifi 10*765532c8SArnaldo Carvalho de Meloperf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm 11