From 19bcc31928c01a89edf38b05ce635d42d02f5ae5 Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Fri, 15 Jan 2021 15:51:00 +0100 Subject: [PATCH] Fix memory all command --- ChangeLog | 6 ++++++ EcProcess.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 42d5365..76ba264 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2021-01-15 Wolfgang Lux + + * EcProcess.m(cmdMesgmemory:): + Fix output of 'memory all' command to really report all + allocations. + 2020-04-06 Richard Frith-Macdonald * EcControl.m: diff --git a/EcProcess.m b/EcProcess.m index c090d6d..0a0868a 100644 --- a/EcProcess.m +++ b/EcProcess.m @@ -4942,7 +4942,7 @@ With two parameters ('maximum' and a number),\n\ { const char* list; - list = (const char*)GSDebugAllocationList(NO); + list = (const char*)GSDebugAllocationListAll(); [self cmdPrintf: @"Memory total allocation stats at %@:\n%s", [NSDate date], list]; }