summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/eighteen.stp
blob: 1272b9bea09cdeff3c2fd7fddd4903b3c466ca92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! stap -p4

# this tests access to parameters from prologue-end PC addresses which
# land inside the scope of an inline instance; the functionality is
# provided by searching the function's DIE rather than the by PC
# proximity. (PR 1244)

# changed to find __audit_getname or audit_getname without checking
# kernel version to support backports.

probe kernel.function("*audit_getname@kernel/auditsc.c")
{
        log(kernel_string($name));
}