Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How I can get the peak memory on Mac OS?

In Windows I can get the Peak Memory usage by calling GetProcessMemoryInfo

function TProcess.Peek: Cardinal;
var
  PMC: PPROCESS_MEMORY_COUNTERS;
  PMCSize: Cardinal;
begin
  PMCSize := SizeOf(PROCESS_MEMORY_COUNTERS);
  GetMem(PMC, PMCSize);
  try
    PMC^.cb := PMCSize;
    if GetProcessMemoryInfo(FHandle, PMC, PMCSize) then
      Exit(PMC^.PeakWorkingSetSize)
    else
      Exit(0);
  finally
    FreeMem(PMC);
  end;
end;

What is the Mac OS equivalent to do this?

like image 285
Gad D Lord Avatar asked Sep 18 '12 12:09

Gad D Lord


1 Answers

You can use /usr/bin/time -l <cmd> like this:

/usr/bin/time -l sleep 3
        3.00 real         0.00 user         0.00 sys
    552960  maximum resident set size                  <--- this one (in bytes)
         0  average shared memory size
         0  average unshared data size
         0  average unshared stack size
       144  page reclaims
         0  page faults
         0  swaps
         0  block input operations
         0  block output operations
         0  messages sent
         0  messages received
         0  signals received
         0  voluntary context switches
         2  involuntary context switches
like image 136
Mark Setchell Avatar answered Oct 26 '22 13:10

Mark Setchell