From owner-freebsd-current@FreeBSD.ORG Fri Feb 12 21:11:03 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1691065707 for ; Fri, 12 Feb 2010 21:11:03 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-px0-f176.google.com (mail-px0-f176.google.com [209.85.216.176]) by mx1.freebsd.org (Postfix) with ESMTP id 8DD228FC21 for ; Fri, 12 Feb 2010 21:11:03 +0000 (UTC) Received: by pxi6 with SMTP id 6so2893204pxi.14 for ; Fri, 12 Feb 2010 13:11:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=mUKq1HH+UIC6KhJYaHQ4HQRqOOiofZU48ztk3QM5tio=; b=JrxYKHOw2Dd9AECf5KEDP0mY2j7QFFCaTS9IrvuhlbTPzfyXCJ69Qp5X/FrC+zXbuO LULlwjwwmUVYlxLOQAPxOYBjUcNjIjH7eEDWkqZFd6l6+556+LVQJYdQEgjrlS6nkVcP 65lGpgjQ0F6UP9t3z5OOao1TOi85WOS3FPIeM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=XkDhFuL12sPcoLVSiqwxq1uinFPi+y4AWatvkKzs/xp+1kPf4XIbl0Wj+Fewf7t13I gDWL0Yl9N8xKqEgoMJ39agG9HkN0sJ57L5ov2BgvjC/7vSW3ZyEGuccbhBywESCR4u/S GCFyNGfiigqTzuOTACG8C736vZlW7V6y/jYiA= MIME-Version: 1.0 Received: by 10.142.2.29 with SMTP id 29mr1304204wfb.99.1266009063238; Fri, 12 Feb 2010 13:11:03 -0800 (PST) In-Reply-To: References: <4B75A801.3040107@delphij.net> <7d6fde3d1002121241s45f1ba5dtb305ebe8f2beb15@mail.gmail.com> <4B75BFD7.6050107@delphij.net> <7d6fde3d1002121302s6ae32cbar4a1c8fa6a36e4aeb@mail.gmail.com> Date: Fri, 12 Feb 2010 13:11:03 -0800 Message-ID: <7d6fde3d1002121311p579a5762j5cdbb223623b34fc@mail.gmail.com> From: Garrett Cooper To: Ryan Stone Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Current , d@delphij.net Subject: Re: time doesn't work? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Feb 2010 21:11:03 -0000 On Fri, Feb 12, 2010 at 1:08 PM, Ryan Stone wrote: >> >> [garrcoop@garrcoop-fbsd ~]$ time vim nose-plist-fix.diff >> >> # monkeyed around for a few seconds... >> >> real =A0 =A00m5.753s >> user =A0 =A00m0.047s >> sys =A0 =A0 0m0.019s >> >> [garrcoop@garrcoop-fbsd ~/ipcvs/freebsd/src]$ time -p vim >> >> # pattered around for a few more seconds... >> >> real 12.04 >> user 0.07 >> sys 0.03 >> > > I'm not sure that this means much. =A0user and system time measure how > much *cpu* time was used. =A0In an interactive application like vi I > think that it's expected behaviour to see so little cpu time spent. Yeah... you're probably right... [garrcoop@garrcoop-fbsd ~]$ time sh -c 'while [ 1 ] ; do : ; done' ^C real 0m3.337s user 0m3.325s sys 0m0.000s Thanks for noting the obvious :), -Garrett