Re: How do I solve/work around "Resource temporarily unavailable" (RESOLVED)

2005-04-23 Thread Timothy Wall
I found what seems to be the cause of the resource leak, at least for the XP computers involved. Aventail Connect (a VPN client) seems to have been involved since removing it from the system fixed the problem. It seemed odd that using msconfig to start up with only essential drivers and no ser

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-14 Thread Brian Dessent
Timothy Wall wrote: > > Attached is a very simple makefile which demonstrates the problem. > There's a leak either in make itself or in the spawning of > subprocesses. I'm afriad I'm in the same boat as Dave K -- I've been running it for 45 minutes now with no discernable leaks. The memory usage

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-14 Thread Timothy Wall
Thanks for the input so far. Task Manager shows memory usage slowly creeping up as the makefile below is run. I've verified this on two XP laptops and one w2k desktop. The memory never comes back, and it doesn't take long to max out a 512Mb/768Mb machine. Might take a bit longer if you've g

RE: How do I solve/work around "Resource temporarily unavailable"

2005-04-14 Thread Dave Korn
t does hog a lot of cpu resource and occasionally causes applications to pause for a while, but it doesn't seem to be doing any real harm. As to your question, "how do i solve/work around resource temporarily unavailable", I would have thought it's obvious. You wait a whi

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-14 Thread Timothy Wall
Attached is a very simple makefile which demonstrates the problem. There's a leak either in make itself or in the spawning of subprocesses. Beware! this will likely lock up your machine, or at the very least prevent you from launching any new processes. Simply type "make" with this makefile i

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-13 Thread Larry Hall
At 06:16 AM 4/13/2005, you wrote: >See attached. The make starts failing when it can't invoke some subprocesses. > >On Apr 12, 2005, at 3:48 PM, Larry Hall wrote: > >> >>So are there any more error message lines other than just: >> >>/bin/bash: fork: Resource temporarily unavailable >>/bin/bash: l

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-13 Thread Timothy Wall
No, no virus scanners here. On Apr 13, 2005, at 10:33 AM, Brian Ford wrote: On Wed, 13 Apr 2005, Timothy Wall wrote: See attached. The make starts failing when it can't invoke some subprocesses. Just a WAG. Are you running a virus scanner like Agnitum Outpost (sp?)? -- Unsubscribe info: h

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-13 Thread Brian Ford
On Wed, 13 Apr 2005, Timothy Wall wrote: > See attached. The make starts failing when it can't invoke some > subprocesses. Just a WAG. Are you running a virus scanner like Agnitum Outpost (sp?)? -- Brian Ford Senior Realtime Software Engineer VITAL - Visual Simulation Systems FlightSafety Int

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-13 Thread Timothy Wall
See attached. The make starts failing when it can't invoke some subprocesses. On Apr 12, 2005, at 3:48 PM, Larry Hall wrote: So are there any more error message lines other than just: /bin/bash: fork: Resource temporarily unavailable /bin/bash: line 1: /usr/bin/find: Resource temporarily unavail

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Andrew DeFaria
Larry Hall wrote: At 03:35 PM 4/12/2005, you wrote: No joy. Tried replacing cygwin1.dll with the one from 1.5.15 (snapshot build); still get the same error. So are there any more error message lines other than just: /bin/bash: fork: Resource temporarily unavailable /bin/bash: line 1: /usr/bin/find

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Larry Hall
At 03:35 PM 4/12/2005, you wrote: >No joy. Tried replacing cygwin1.dll with the one from 1.5.15 (snapshot >build); still get the same error. So are there any more error message lines other than just: /bin/bash: fork: Resource temporarily unavailable /bin/bash: line 1: /usr/bin/find: Resource t

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Timothy Wall
No joy. Tried replacing cygwin1.dll with the one from 1.5.15 (snapshot build); still get the same error. On Apr 12, 2005, at 1:53 PM, Larry Hall wrote: Try it with the latest release Cygwin package (1.5.14). If that doesn't help, you might want to try it against the upcoming release (1.5.15) b

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Timothy Wall
Looks like the "rebaseall" only delayed the problem. I still get the error, only now it takes a few more invocations of the build. I will try a dev build next. On Apr 12, 2005, at 2:14 PM, Larry Hall wrote: At 01:59 PM 4/12/2005, you wrote: I updated both to 1.5.14-1. I then downloaded and ran

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Larry Hall
At 01:59 PM 4/12/2005, you wrote: >I updated both to 1.5.14-1. I then downloaded and ran rebaseall and rebooted, >which seems to have fixed the problem (at least the invocations which >reproducibly triggered the problem no longer do so). > >rebaseall failed a few times before I remembered I had

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Timothy Wall
I updated both to 1.5.14-1. I then downloaded and ran rebaseall and rebooted, which seems to have fixed the problem (at least the invocations which reproducibly triggered the problem no longer do so). rebaseall failed a few times before I remembered I had cygwin sshd running. It also did not

Re: How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Larry Hall
At 12:48 PM 4/12/2005, you wrote: >I've got a "make" process that's pretty complex and does many recursive >invocations (at most 4 deep, though). With some additions to the build, I >seem to have recently crossed over some threshold which now causes the build >to use up all available process re

How do I solve/work around "Resource temporarily unavailable"

2005-04-12 Thread Timothy Wall
I've got a "make" process that's pretty complex and does many recursive invocations (at most 4 deep, though). With some additions to the build, I seem to have recently crossed over some threshold which now causes the build to use up all available process resources, so nothing more can be run.