diff options
author | fche <fche> | 2008-02-26 00:31:04 +0000 |
---|---|---|
committer | fche <fche> | 2008-02-26 00:31:04 +0000 |
commit | 9b7b41363933f603b25a61939f16e21a050ddf0b (patch) | |
tree | f45a6c0df41e974719058511d68653403caa6686 | |
parent | 7a468d6812f50294c34dbda4ed696d95e7ecb124 (diff) | |
download | systemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.tar.gz systemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.tar.xz systemtap-steved-9b7b41363933f603b25a61939f16e21a050ddf0b.zip |
added wildcard sample
-rw-r--r-- | stap.1.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 %) %) ) { /* ... */ } |