blob: 910fc2c966c21bfe8d0e6cdfdaeaea8c6962429d (
plain)
1
2
3
4
5
6
7
8
|
#! stap -p2
# tests that an inline function is *not* matched using
# the function().call pattern
probe kernel.function("context_switch").call {
log ("found an inline via function().call")
}
|