【发布时间】:2015-10-15 03:44:00
【问题描述】:
我想知道如何使用 time 命令收集一个程序/命令(例如 gcc ...)的内存使用情况。 'time' 命令的文档中报告了许多属性。我不知道我应该使用哪一个:
内存
%M Maximum resident set size of the process during its lifetime,
in Kbytes.
%t (Not in tcsh(1).) Average resident set size of the process,
in Kbytes.
%K Average total (data+stack+text) memory use of the process, in
Kbytes.
%D Average size of the process's unshared data area, in Kbytes.
%p (Not in tcsh(1).) Average size of the process's unshared
stack space, in Kbytes.
%X Average size of the process's shared text space, in Kbytes.
%Z (Not in tcsh(1).) System's page size, in bytes. This is a
per-system constant, but varies between systems.
%F Number of major page faults that occurred while the process
was running. These are faults where the page has to be read
in from disk.
%R Number of minor, or recoverable, page faults. These are
faults for pages that are not valid but which have not yet
been claimed by other virtual pages. Thus the data in the
page is still valid but the system tables must be updated.
%W Number of times the process was swapped out of main memory.
%c Number of times the process was context-switched involuntarily
(because the time slice expired).
%w Number of waits: times that the program was context-switched
voluntarily, for instance while waiting for an I/O operation
to complete.
【问题讨论】:
标签: linux performance memory time