summaryrefslogtreecommitdiff
path: root/graphics/asymptote/runtime.in
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/runtime.in')
-rw-r--r--graphics/asymptote/runtime.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/asymptote/runtime.in b/graphics/asymptote/runtime.in
index 42ea5dffc8..048689c789 100644
--- a/graphics/asymptote/runtime.in
+++ b/graphics/asymptote/runtime.in
@@ -179,6 +179,8 @@ const item Default=item(default_t());
namespace run {
+stopWatch wallClock;
+
const char *arrayempty="cannot take min or max of empty array";
const char *noruntime="no runtime environment for embedded eval";
@@ -1045,7 +1047,7 @@ realarray *_cputime()
(*t)[1]=((real) buf.tms_stime)*ticktime;
(*t)[2]=((real) buf.tms_cutime)*ticktime;
(*t)[3]=((real) buf.tms_cstime)*ticktime;
- (*t)[4]=utils::totalseconds();
+ (*t)[4]=wallClock.seconds();
return t;
}