diff options
Diffstat (limited to 'testsuite/systemtap.base/const_value.stp')
-rw-r--r-- | testsuite/systemtap.base/const_value.stp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/systemtap.base/const_value.stp b/testsuite/systemtap.base/const_value.stp new file mode 100644 index 00000000..109d3d46 --- /dev/null +++ b/testsuite/systemtap.base/const_value.stp @@ -0,0 +1,6 @@ +probe process("const_value.exe").mark("constvalues") +{ + printf("f: %s\n", usymname($f)); + printf("i: %d\n", $baz->i); + printf("j: %d\n", $baz->j); +}
\ No newline at end of file |