From f102d1073eb0ed0101e51e39a2b73d043cbe0f2a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 30 Oct 2009 03:15:07 -0500 Subject: [PATCH] tools.memory: update for language changes --- basis/tools/memory/memory.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/tools/memory/memory.factor b/basis/tools/memory/memory.factor index 479c16989c..9b1d6284bb 100644 --- a/basis/tools/memory/memory.factor +++ b/basis/tools/memory/memory.factor @@ -181,8 +181,8 @@ TUPLE: gc-stats collections times ; : aggregate-stats-table ( stats -- table ) [ { "Total collections:" "Total GC time:" } ] dip values - [ [ collections>> ] sigma ] - [ [ times>> sum ] sigma micros>string ] + [ [ collections>> ] map-sum ] + [ [ times>> sum ] map-sum micros>string ] bi 2array zip ; PRIVATE>