#!/bin/bash # description: syscall top # args: [comm] [interval] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 2 ] ; then echo "usage: sctop-report [comm] [interval]" exit fi if [ "$n_args" -gt 1 ] ; then comm=$1 interval=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then interval=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval 2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/tools/hv/Makefile
AgeCommit message (Expand)Author
2018-02-21tools: fix cross-compile var clobberingMartin Kelly
2017-11-28tools/hv: add install target to MakefileVitaly Kuznetsov
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman
2016-11-07tools: hv: remove unnecessary link flagWeibing Zhang
2016-02-07tools/hv: Use include/uapi with __EXPORTED_HEADERS__Kamal Mostafa
2015-03-25tools: hv: fcopy_daemon: support >2GB files for x86_32 guestDexuan Cui
2015-01-12tools: hv: Makefile: Add hv_fcopy_daemon to MakefileMatej Muzila