From 163a52d9b453bdbea0a4604b8c8e037639b49854 Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 12 Nov 2007 22:14:20 +0000 Subject: 2007-11-12 Martin Hunt * stap.1.in: Replaced references to the log() function. * stapex.5.in: Ditto. * stapfuncs.5.in: Ditto. ALso remove print and printf. They are documented in stap.1.in. --- stapex.5.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stapex.5.in') 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 -- cgit