From: Daniel Barker Newsgroups: comp.os.msdos.djgpp Subject: Does Windows 98 lose DMPI descriptors? Date: Thu, 18 Feb 1999 18:22:12 +0000 Organization: Edinburgh University Lines: 36 Message-ID: NNTP-Posting-Host: holyrood.ed.ac.uk Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: scotsman.ed.ac.uk 919361993 19109 129.215.38.17 (18 Feb 1999 18:19:53 GMT) X-Complaints-To: usenet AT scotsman DOT ed DOT ac DOT uk NNTP-Posting-Date: 18 Feb 1999 18:19:53 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com In the DJGPP FAQ I read about problems with some versions of Windows losing DMPI descriptors, causing a program which spawns many other DJGPP programs to eventually crash in the attempt. This would have bad implications for my plan to program mainly using GNU tools (GAWK, SORT, WC, etc.) wired together by BASH. So I ran this test BASH script, to see if and when the problem would kick in: i=0 while true do i=`expr $i + 1` echo $i done i had been incremented to over 45000 by the time I had to kill the program so I could install something. The BASH script ran slowly and caused many page faults, presumably since it involves many program launches, but did not crash during this whole time. BASH, EXPR and TRUE all were DJGPP ports of GNU programs, recently downloaded. So, is the problem absent with Windows 98? Or was this a poor test? Does the problem still exist with other modern versions of Windows? Thanks for any information. Daniel Barker, Institute of Cell and Molecular Biology, Swann Building, King's Buildings, Mayfield Road, Edinburgh EH9 3JR UK