diff options
author | Elliott Baron <elliott@localhost.localdomain> | 2008-12-19 10:13:52 -0500 |
---|---|---|
committer | Elliott Baron <elliott@localhost.localdomain> | 2008-12-19 10:13:52 -0500 |
commit | a46143af464b24e75e784a3ebaebf86bc52a44ed (patch) | |
tree | 8ab09ae8ff39e673fed163ad6ef225c3e0ae754a /testsuite/systemtap.base/static_uprobes.stp | |
parent | 30c94a80d5f7bef33450bd1a7e090c8e99b6db89 (diff) | |
parent | b00e123d3bc577a0b255628e36f7534dc7a1e641 (diff) | |
download | systemtap-steved-a46143af464b24e75e784a3ebaebf86bc52a44ed.tar.gz systemtap-steved-a46143af464b24e75e784a3ebaebf86bc52a44ed.tar.xz systemtap-steved-a46143af464b24e75e784a3ebaebf86bc52a44ed.zip |
Merge branch 'master' of ssh://ebaron@sources.redhat.com/git/systemtap
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) -} |