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, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/runtime.in b/graphics/asymptote/runtime.in
index 986259c10b..ea2291ec44 100644
--- a/graphics/asymptote/runtime.in
+++ b/graphics/asymptote/runtime.in
@@ -1044,8 +1044,8 @@ realarray *_cputime()
::times(&buf);
array *t=new array(5);
- (*t)[0]=cpuTime.seconds();
- (*t)[1]=((real) buf.tms_stime)*ticktime;
+ (*t)[0]=cpuTime.seconds(); // Includes system time
+ (*t)[1]=0.0;
(*t)[2]=((real) buf.tms_cutime)*ticktime;
(*t)[3]=((real) buf.tms_cstime)*ticktime;
(*t)[4]=wallClock.seconds();