RE: xargs: cannot fork: Resource temporarily unavailable

2007-11-27 Thread Jose Correia
Thanks Larry it was after all still the Logitech crap... I thought just
by disabling its two services on the Windows Service manager that it was
sufficient, but then the Logitech serice mentioned in that url was not
one of them... So I completely removed it and voila!! :-)

Thanks again
Jose Correia 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Larry Hall (Cygwin)
Sent: 23 November 2007 06:14 AM
To: cygwin@cygwin.com
Subject: Re: xargs: cannot fork: Resource temporarily unavailable

Jose Correia wrote:
 Hi all
 
 Sometime ago I posted saying it could have been the Logitech services 
 running, as I had read somewhere on the mailing list, but 
 unfortunately that is not the case, the problem below still 
 persists... Can someone shed some urgent light on this matter please?

Got BLODA? ;-)
http://cygwin.com/acronyms/#BLODA

This is a typical cause of stuff like this.

-- 
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 893-9889 - FAX
Holliston, MA 01746

_

A: Yes.
  Q: Are you sure?
  A: Because it reverses the logical flow of conversation.
  Q: Why is top posting annoying in email?

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: xargs: cannot fork: Resource temporarily unavailable

2007-11-22 Thread Larry Hall (Cygwin)

Jose Correia wrote:

Hi all

Sometime ago I posted saying it could have been the Logitech services
running, as I had read somewhere on the mailing list, but unfortunately
that is not the case, the problem below still persists... Can someone
shed some urgent light on this matter please?


Got BLODA? ;-)
http://cygwin.com/acronyms/#BLODA

This is a typical cause of stuff like this.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 893-9889 - FAX
Holliston, MA 01746

_

A: Yes.
 Q: Are you sure?
 A: Because it reverses the logical flow of conversation.
 Q: Why is top posting annoying in email?

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: xargs: cannot fork: Resource temporarily unavailable

2007-11-22 Thread Jose Correia
Hi all

Sometime ago I posted saying it could have been the Logitech services
running, as I had read somewhere on the mailing list, but unfortunately
that is not the case, the problem below still persists... Can someone
shed some urgent light on this matter please?

Appreciated
Jose Correia


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jose Correia
Sent: 12 November 2007 03:55 PM
To: cygwin@cygwin.com
Subject: xargs: cannot fork: Resource temporarily unavailable

Hi all
 
Im using cygin install when the cygwin install version 2.457.2.2 on
Windows XP professional SP2, on an IBM ThinkPad Dual Processor T60.
 
I run a unix script from a bigger ant script, which used to work fine on
a single processor laptop. Now it works intermittently 
 
The Unix script is this:
 
#START
export SRC=$1
 
find $SRC -type d -name 'CVS' | xargs -i rm -rf {}
 
mv $SRC/tres/src/java/com/traderoot/core/
$SRC/tres/src/java/com/traderoot/cfgcore
#for jaxb generated source
mv $SRC/com/traderoot/core/ $SRC/com/traderoot/cfgcore
 
grep -Rl  'com.traderoot.core' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.core/com.traderoot.cfgcore/g' {} grep -Rl
'com/traderoot/core' $SRC | xargs -i ./replace.sh
's#com/traderoot/core#com/traderoot/cfgcore#g' {} grep -Rl
'com.traderoot.tools' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' {}
 
#END
 
On the times when it does not work it spews out:
 
[exec] + xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' '{}'
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Additionaldata.jav
a
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Address.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Arg.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/impl/JAXBVersion.j
ava
 [exec]   4 [main] xargs 112660 fork_copy: linked dll data/bss
pass 0 failed, 0x54D000..0x54D020, done 0, windows pid 114584, Win32
error 487
 [exec] xargs: cannot fork: Resource temporarily unavailable
 
 
Could this be because of the dual processor where somehow the one
process is left hanging waiting for the other? Anyone experienced this
issue before...? can't find anything on the archives...
 
Regards
Jose Correia
 
 
 
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



xargs: cannot fork: Resource temporarily unavailable

2007-11-12 Thread Jose Correia
Hi all
 
Im using cygin install when the cygwin install version 2.457.2.2 on
Windows XP professional SP2, on an IBM ThinkPad Dual Processor T60.
 
I run a unix script from a bigger ant script, which used to work fine on
a single processor laptop. Now it works intermittently 
 
The Unix script is this:
 
#START
export SRC=$1
 
find $SRC -type d -name 'CVS' | xargs -i rm -rf {}
 
mv $SRC/tres/src/java/com/traderoot/core/
$SRC/tres/src/java/com/traderoot/cfgcore
#for jaxb generated source
mv $SRC/com/traderoot/core/ $SRC/com/traderoot/cfgcore
 
grep -Rl  'com.traderoot.core' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.core/com.traderoot.cfgcore/g' {} 
grep -Rl  'com/traderoot/core' $SRC | xargs -i ./replace.sh
's#com/traderoot/core#com/traderoot/cfgcore#g' {}
grep -Rl  'com.traderoot.tools' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' {}
 
#END
 
On the times when it does not work it spews out:
 
[exec] + xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' '{}'
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Additionaldata.jav
a
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Address.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Arg.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/impl/JAXBVersion.j
ava
 [exec]   4 [main] xargs 112660 fork_copy: linked dll data/bss
pass 0 failed, 0x54D000..0x54D020, done 0, windows pid 114584, Win32
error 487
 [exec] xargs: cannot fork: Resource temporarily unavailable
 
 
Could this be because of the dual processor where somehow the one
process is left hanging waiting for the other? Anyone experienced this
issue before...? can't find anything on the archives...
 
Regards
Jose Correia
 
 
 
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: xargs: cannot fork: Resource temporarily unavailable

2007-11-12 Thread Jose Correia
 
Damn formatting, the greps are each on a separate line.

I did some more research and via Google I found that the recently
installed Logitech Webcam software might be clashing with it, I disabled
it and so far ok, will let u know. 

The mailing list search did not return anything when I searched for
xargs: cannot fork: Resource temporarily unavailable hence why I said
I had found nothing. Had I limited the search further to cannot fork:
Resource temporarily unavailable I would have found something. ;-)

Regards
Jose 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jose Correia
Sent: 12 November 2007 03:55 PM
To: cygwin@cygwin.com
Subject: xargs: cannot fork: Resource temporarily unavailable

Hi all
 
Im using cygin install when the cygwin install version 2.457.2.2 on
Windows XP professional SP2, on an IBM ThinkPad Dual Processor T60.
 
I run a unix script from a bigger ant script, which used to work fine on
a single processor laptop. Now it works intermittently 
 
The Unix script is this:
 
#START
export SRC=$1
 
find $SRC -type d -name 'CVS' | xargs -i rm -rf {}
 
mv $SRC/tres/src/java/com/traderoot/core/
$SRC/tres/src/java/com/traderoot/cfgcore
#for jaxb generated source
mv $SRC/com/traderoot/core/ $SRC/com/traderoot/cfgcore
 
grep -Rl  'com.traderoot.core' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.core/com.traderoot.cfgcore/g' {} grep -Rl
'com/traderoot/core' $SRC | xargs -i ./replace.sh
's#com/traderoot/core#com/traderoot/cfgcore#g' {} grep -Rl
'com.traderoot.tools' $SRC | xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' {}
 
#END
 
On the times when it does not work it spews out:
 
[exec] + xargs -i ./replace.sh
's/com\.traderoot\.tools/com.traderoot.cfgtools/g' '{}'
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Additionaldata.jav
a
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Address.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/Arg.java
 [exec] replacing in
bootloadergensrc/com/traderoot/cfgtools/artifact/jaxb/impl/JAXBVersion.j
ava
 [exec]   4 [main] xargs 112660 fork_copy: linked dll data/bss
pass 0 failed, 0x54D000..0x54D020, done 0, windows pid 114584, Win32
error 487
 [exec] xargs: cannot fork: Resource temporarily unavailable
 
 
Could this be because of the dual processor where somehow the one
process is left hanging waiting for the other? Anyone experienced this
issue before...? can't find anything on the archives...
 
Regards
Jose Correia
 
 
 
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/