blob: 04a9af2003869c96eb62ace49f6299374b26ca67 (
plain)
1
2
3
4
5
6
7
8
|
#! stap -p4
# 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))
}
|