Correct the DTrace script to the one we use.

This commit is contained in:
Jesper Louis Andersen 2015-08-29 22:17:25 +02:00
parent 01526484f2
commit 03f93c4f7d

View File

@ -1,9 +1,9 @@
erlang*:::nif-entry erlang*:::nif-entry
{ {
funcall_entry_ts[cpu, copyinstr(arg1)] = vtimestamp; funcall_entry_ts[cpu, copyinstr(arg1)] = timestamp;
} }
erlang*:::nif-return erlang*:::nif-return
{ {
@time[cpu, copyinstr(arg1)] = lquantize((vtimestamp - funcall_entry_ts[cpu, copyinstr(arg1)] ), 0, 60000, 1000); @time[cpu, copyinstr(arg1)] = lquantize((timestamp - funcall_entry_ts[cpu, copyinstr(arg1)] ), 0, 60000, 1000);
} }