mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-21 02:41:11 +00:00
Fix memory all command
This commit is contained in:
parent
e2a980231a
commit
19bcc31928
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2021-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* EcProcess.m(cmdMesgmemory:):
|
||||
Fix output of 'memory all' command to really report all
|
||||
allocations.
|
||||
|
||||
2020-04-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* EcControl.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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue