summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/nodwf04.stp
blob: c20dec4f4f9297cc506427619edc6320b6a4db05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# The symbol table doesn't give us enough info to probe inline functions.

stap -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e '
probe kernel.function("list_empty").inline {
	printf("%s called\n", probefunc())
	exit()
}

probe timer.sec(15) {
	exit()
}
'