summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2008-02-26 00:31:04 +0000
committerfche <fche>2008-02-26 00:31:04 +0000
commit9b7b41363933f603b25a61939f16e21a050ddf0b (patch)
treef45a6c0df41e974719058511d68653403caa6686
parent7a468d6812f50294c34dbda4ed696d95e7ecb124 (diff)
downloadsystemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.tar.gz
systemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.tar.xz
systemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.zip
added wildcard sample
-rw-r--r--stap.1.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/stap.1.in b/stap.1.in
index 51ba6380..c557350a 100644
--- a/stap.1.in
+++ b/stap.1.in
@@ -258,7 +258,7 @@ The following code might adapt to hypothetical kernel version drift:
.SAMPLE
probe kernel.function (
%( kernel_v <= "2.6.12" %? "__mm_do_fault" %:
- %( kernel_vr == "2.6.13\-1.8273FC3smp" %? "do_page_fault" %:
+ %( kernel_vr == "2.6.13*smp" %? "do_page_fault" %:
UNSUPPORTED %) %)
) { /* ... */ }