Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!topaz!rutgers!husc6!talcott!encore!collins From: collins@encore.UUCP (Jeff Collins) Newsgroups: net.arch,net.unix Subject: Re: csh time command help Message-ID: <358@encore.UUCP> Date: Sat, 18-Oct-86 11:40:13 EDT Article-I.D.: encore.358 Posted: Sat Oct 18 11:40:13 1986 Date-Received: Tue, 21-Oct-86 20:44:18 EDT References: <717@cbmvax.cbmvax.cbm.UUCP> <219@mipos3.UUCP> Reply-To: collins@encore.UUCP (Jeff Collins) Organization: Encore Computer, Marlboro MA Lines: 30 Xref: watmath net.arch:4117 net.unix:9610 In article <219@mipos3.UUCP> pinkas@mipos3.UUCP (Israel Pinkas) writes: >Can anyone tell me what all the fields that the csh time command prints out >are? When I do something like 'time ls' in csh, I get: > > 1.3u 0.7s 0:11 19% 23+79k 3+0io 2pf+0w > >The man page for csh documents the fist 4 fields as user time, system time, >elapsed time (all in seconds), and utilization (i.e. (u+s)/e). I guess >that the next fields are memory usage, io calls, and page faults. What the >numbers mean is not described. Could anyone send me a definite description >of the last 6 numbers? > >Thanks, > >Israel > 23+79k -- Average resident sizes of text and data+stack. The numbers are measured in 512-byte pages. 3+0io -- This is the I/O charged to the process (not necessarily initiated by the process). The 3 is the total number of requests, the 0 is the number of disk accesses. The difference is the number of buffer cache hits. 2pf+0w -- The 2pf is the number of page faults that required disk I/O to read the page (known in unix as major faults). The 0w is the number of times ths process was swapped to disk. -jeff-