From 03f93c4f7d0cb56b5a86b445cb004a3a8de2278b Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Sat, 29 Aug 2015 22:17:25 +0200 Subject: [PATCH] Correct the DTrace script to the one we use. --- bench/funcall_enacl.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bench/funcall_enacl.d b/bench/funcall_enacl.d index c0a938f..b40db64 100644 --- a/bench/funcall_enacl.d +++ b/bench/funcall_enacl.d @@ -1,9 +1,9 @@ erlang*:::nif-entry { - funcall_entry_ts[cpu, copyinstr(arg1)] = vtimestamp; + funcall_entry_ts[cpu, copyinstr(arg1)] = timestamp; } 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); }