diff options
author | Stan Cox <scox@redhat.com> | 2008-12-16 10:34:01 -0500 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2008-12-16 10:34:01 -0500 |
commit | 1f0cfd980bc0a5e3e360f4ee46808b239bca6b55 (patch) | |
tree | 4a7481bfd23d7812d31551d515de0dd3b34fbc7f /testsuite/systemtap.base/static_uprobes.stp | |
parent | 70be2c5b7a1ae10d23bb092a04031a119136aa47 (diff) | |
download | systemtap-steved-1f0cfd980bc0a5e3e360f4ee46808b239bca6b55.tar.gz systemtap-steved-1f0cfd980bc0a5e3e360f4ee46808b239bca6b55.tar.xz systemtap-steved-1f0cfd980bc0a5e3e360f4ee46808b239bca6b55.zip |
Convert .mark to .statement(0x) instead of .statement(foo.c:N)
Diffstat (limited to 'testsuite/systemtap.base/static_uprobes.stp')
-rw-r--r-- | testsuite/systemtap.base/static_uprobes.stp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/systemtap.base/static_uprobes.stp b/testsuite/systemtap.base/static_uprobes.stp deleted file mode 100644 index b9de197e..00000000 --- a/testsuite/systemtap.base/static_uprobes.stp +++ /dev/null @@ -1,14 +0,0 @@ -probe process("static_uprobes.x").mark("label1") -{ - printf("In label1 probe\n") -} - -probe process("static_uprobes.x").mark("label2") -{ - printf("In label2 probe %#x\n", $arg1) -} - -probe process("static_uprobes.x").mark("label3") -{ - printf("In label3 probe %#x %#x\n", $arg1, $arg2) -} |