|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /proc/17567/root/usr/share/systemtap/examples/general/ |
Upload File : |
#!/usr/bin/stap
global var, varerr
probe $1 {
if (@defined($2)) {
try {
newvar = $2;
if (var[tid()] != newvar) {
printf("%s[%d] %s %s:\n", execname(), tid(), pp(), @2);
println(newvar);
var[tid()] = newvar;
}
} catch { varerr ++ } # error during $2 resolution or perhaps var[] assignment
}
}
probe kprocess.release { # if using per-thread checking
delete var[$p->pid] # thread
}
probe never {
var[0]="" # assigns a type to var in case no probes match $1 above
}
probe error,end {
if (varerr) printf("%s %s access errors: %d", @1, @2, varerr);
}