blob: bd8a412961036a25715d4a20bb551e2b00d77043 (
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") {
log ("switch from=" . hexstring($prev) . " to=" . hexstring($next))
}
|