Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!npeer.de.kpn-eurorings.net!npeer-ng0.de.kpn-eurorings.net!xlned.com!feeder1.xlned.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'scripts': 0.03; 'configure': 0.05; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'windows,': 0.09; 'cheap.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'surprising': 0.16; 'windows?': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'shell': 0.22; 'header:User- Agent:1': 0.23; 'tend': 0.24; 'script': 0.25; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'unix': 0.29; 'getting': 0.31; 'running': 0.33; 'but': 0.35; 'to:addr :python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'took': 0.61; 'hours': 0.66; 'minutes': 0.67; 'computers': 0.72; 'faster.': 0.84; 'maybe,': 0.84; 'edwards': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Sturla Molden Subject: Re: threading Date: Wed, 09 Apr 2014 00:32:10 +0200 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 39-82-11.connect.netcom.no User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1396996347 news.xs4all.nl 2957 [2001:888:2000:d::a6]:54093 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:69907 On 08/04/14 22:30, Grant Edwards wrote: >>> Unix maybe, but what about Windows? Is it efficient to create >>> processes under Windows? >> >> Processes are very heavy-weight on Windows. > > Not surprising given its VMS heritage. I remember running shell > scripts under VMS on a VAX-11/780 that took hours to do what would > have taken minutes on an LSI-11 running Unix. The whole Unix "small > tools working together" paradigm is based on the assumption that > process creation and death are fast and cheap. That is one reason software tend to be monolithic on Windows, including build tools. Running a configure script used to take forever, but thankfully computers are getting faster. Sturla