diff options
author | Patrik Nyblom <[email protected]> | 2012-03-05 17:29:03 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2012-03-22 18:16:14 +0100 |
commit | db4ddca4d9709965121fba9a1f9cc68226f35a0c (patch) | |
tree | f3a6719ac33760ed669b5c1d84aca67626cec4cb /lib/dtrace/examples/user-probe.systemtap | |
parent | cca350ef2206a81c0f8969071f412f07b87413a1 (diff) | |
download | otp-db4ddca4d9709965121fba9a1f9cc68226f35a0c.tar.gz otp-db4ddca4d9709965121fba9a1f9cc68226f35a0c.tar.bz2 otp-db4ddca4d9709965121fba9a1f9cc68226f35a0c.zip |
Correct some errors in the user tag spreading
Diffstat (limited to 'lib/dtrace/examples/user-probe.systemtap')
-rw-r--r-- | lib/dtrace/examples/user-probe.systemtap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dtrace/examples/user-probe.systemtap b/lib/dtrace/examples/user-probe.systemtap index c80bf94697..84a45709e8 100644 --- a/lib/dtrace/examples/user-probe.systemtap +++ b/lib/dtrace/examples/user-probe.systemtap @@ -28,12 +28,12 @@ * environment. */ -probe process("dtrace.so").mark("user_trace-s1") +probe process("dyntrace.so").mark("user_trace-s1") { printf("%s\n", user_string($arg1)); } -probe process("dtrace.so").mark("user_trace-i4s4") +probe process("dyntrace.so").mark("user_trace-i4s4") { printf("%s %s %d %d %d %d '%s' '%s' '%s' '%s'\n", user_string($arg1), |