diff options
Diffstat (limited to 'stapex.5.in')
-rw-r--r-- | stapex.5.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stapex.5.in b/stapex.5.in index f8f61c32..86e1c87b 100644 --- a/stapex.5.in +++ b/stapex.5.in @@ -97,8 +97,8 @@ limits, and result in an error. To trace entry and exit from a function, use a pair of probes: .SAMPLE -probe kernel.function("sys_mkdir") { log ("enter") } -probe kernel.function("sys_mkdir").return { log ("exit") } +probe kernel.function("sys_mkdir") { println ("enter") } +probe kernel.function("sys_mkdir").return { println ("exit") } .ESAMPLE To list the probeable functions in the kernel, use the last-pass |