Date: Wed, 21 Apr 1999 14:52:56 -0700 (PDT) From: Doug White <dwhite@resnet.uoregon.edu> To: Zhihui Zhang <zzhang@cs.binghamton.edu> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Output format of time built-in command Message-ID: <Pine.BSF.4.03.9904211447380.27954-100000@resnet.uoregon.edu> In-Reply-To: <Pine.GSO.3.96.990421170545.2471A-100000@sol.cs.binghamton.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 21 Apr 1999, Zhihui Zhang wrote: > > When I run "# time command", it gives me output in the following format: > > 0.574u 1.357s 0:03.12 61.5% 44+199k 278+1io 13pf+0w Sure: 0.574u = Time on CPU in user mode 1.357s = Time on CPU in kernel mode 0:03.12 = Wall clock run time 61.5% = Average CPU utilization 44+199k = Memory utilization -- 44 blocks, using 199KB 278+1io = I/O utilization, I think it's the number of I/O syscalls. 13pf+0w = Number of page faults the process caused. (The VM defintion of page fault, that is; this is not an error.) This info is pulled directly from the system resource utilization structure rusage, so see the getrusage(2) manpage for detailed explanations. Doug White Internet: dwhite@resnet.uoregon.edu | FreeBSD: The Power to Serve http://gladstone.uoregon.edu/~dwhite | www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.03.9904211447380.27954-100000>