blob: 8f95d76b159c907f2e413e12950b86b459515ba8 (
plain)
1
2
3
4
5
6
7
8
|
#! stap -p2
# PR 1155: should start working when we can resolve the parameters of
# the inlines.
probe kernel.function("context_switch") {
printf("switch from=0x%x to=0x%x\n", $prev, $next)
}
|