From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Two strange messages while building Emacs on MS-Windows Date: Mon, 10 Dec 2012 16:44:24 +0200 Message-ID: <83d2yiarw7.fsf@gnu.org> References: <83mwxpmtp6.fsf@gnu.org> <83fw3hm0nn.fsf@gnu.org> <83k3srdh3d.fsf@gnu.org> <83pq2ib53h.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1355150685 28981 80.91.229.3 (10 Dec 2012 14:44:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Dec 2012 14:44:45 +0000 (UTC) Cc: emacs-devel@gnu.org, dmoncayo@gmail.com To: monnier@iro.umontreal.ca Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 10 15:44:59 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ti4bL-0002At-2x for ged-emacs-devel@m.gmane.org; Mon, 10 Dec 2012 15:44:59 +0100 Original-Received: from localhost ([::1]:55962 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ti4b8-0006F9-Ij for ged-emacs-devel@m.gmane.org; Mon, 10 Dec 2012 09:44:46 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:42618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ti4b0-0006Et-NP for emacs-devel@gnu.org; Mon, 10 Dec 2012 09:44:44 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ti4aw-00065o-3I for emacs-devel@gnu.org; Mon, 10 Dec 2012 09:44:38 -0500 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:35872) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ti4av-00065i-RH for emacs-devel@gnu.org; Mon, 10 Dec 2012 09:44:34 -0500 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MET00700KTCT500@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Mon, 10 Dec 2012 16:44:33 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MET007I8KY8MQ30@a-mtaout20.012.net.il>; Mon, 10 Dec 2012 16:44:33 +0200 (IST) In-reply-to: <83pq2ib53h.fsf@gnu.org> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.166 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:155430 Archived-At: > Date: Mon, 10 Dec 2012 11:59:14 +0200 > From: Eli Zaretskii > Cc: dmoncayo@gmail.com, emacs-devel@gnu.org > > The command "cd lisp && make compile-always", which sequentially > compiles every Lisp file, was timed on this machine as follows: > > real 23m11.277s > user 16m50.820s > sys 2m45.910s > > The same command with "make -j2" times like this: > > real 11m51.381s > user 17m15.850s > sys 2m49.410s > > which is an entirely reasonable 2-fold speedup in the elapsed time > (and seems to reveal some bug in accounting for user- and > system-times). Actually, there's no bug: user and system times are sums of all the cores that participated in the job, so for -j2 these numbers are roughly doubled.