#!/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 src='/cgit.png' alt='cgit logo'/> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/Kconfig
AgeCommit message (Expand)Author
2019-06-14docs: kbuild: convert docs to ReST and rename to *.rstMauro Carvalho Chehab
2019-06-07docs: Kbuild/Makefile: allow check for missing docs at build timeMauro Carvalho Chehab
2018-08-02kconfig: move the "Executable file formats" menu to fs/Kconfig.binfmtChristoph Hellwig
2018-08-02Kconfig: consolidate the "Kernel hacking" menuChristoph Hellwig
2018-08-02kconfig: include common Kconfig files from top-level KconfigChristoph Hellwig
2018-05-29kconfig: add basic helper macros to scripts/Kconfig.includeMasahiro Yamada
2018-05-29kconfig: show compiler version text in the top commentMasahiro Yamada
2018-05-29kconfig: reference environment variables directly and remove 'option env='Masahiro Yamada
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman