Re: Emacs can't start-process more than 30~40 processes (Was: Re: Emacs w3m `w3m-toggle-inline-images' cause segfault)

2009-07-28 Thread Christopher Faylor
On Tue, Jul 28, 2009 at 10:52:44AM +0800, Haojun Bao wrote: >Haojun Bao writes: > >> I have reduced the test case in this mail >> http://cygwin.com/ml/cygwin/2009-07/msg00111.html >> to a simpler one: >> >> $/bin/emacs --batch -q --execute '(let ((num 0)) >> (while (< num 30) >>

Re: Emacs can't start-process more than 30~40 processes (Was: Re: Emacs w3m `w3m-toggle-inline-images' cause segfault)

2009-07-28 Thread Dave Korn
Haojun Bao wrote: > > My question is, is there anyway out of this? Can I just rebase > cygwin1.dll to the end of all other DLLs? It ought to work. Would you mind giving it a try and letting us know if it helps? It might be a good idea to tweak rebaseall to do this for us. cheers,

Re: Emacs can't start-process more than 30~40 processes (Was: Re: Emacs w3m `w3m-toggle-inline-images' cause segfault)

2009-07-27 Thread Haojun Bao
Haojun Bao writes: > I have reduced the test case in this mail > http://cygwin.com/ml/cygwin/2009-07/msg00111.html > to a simpler one: > > $/bin/emacs --batch -q --execute '(let ((num 0)) > (while (< num 30) > (setq num (+ num 1)) > (message "num is %d" num) >

Emacs can't start-process more than 30~40 processes (Was: Re: Emacs w3m `w3m-toggle-inline-images' cause segfault)

2009-07-26 Thread Haojun Bao
I have reduced the test case in this mail http://cygwin.com/ml/cygwin/2009-07/msg00111.html to a simpler one: $/bin/emacs --batch -q --execute '(let ((num 0)) (while (< num 30) (setq num (+ num 1)) (message "num is %d" num) (start-process "hello" nil "/usr/bin

Re: Emacs w3m `w3m-toggle-inline-images' cause segfault

2009-07-22 Thread Haojun Bao
Ken Brown writes: > On 7/21/2009 10:22 PM, Haojun Bao wrote: >> Here's how to reproduce it: >> >> 1. install w3m-el >> >> 2. start Xwin, and then start emacs with: >>emacs.exe -q -l ~/1.el > > Cygwin's emacs-*-23.0.92-10 packages don't provide emacs.exe. So you > must be using the version yo

Re: Emacs w3m `w3m-toggle-inline-images' cause segfault

2009-07-22 Thread Ken Brown
On 7/21/2009 10:22 PM, Haojun Bao wrote: Here's how to reproduce it: 1. install w3m-el 2. start Xwin, and then start emacs with: emacs.exe -q -l ~/1.el Cygwin's emacs-*-23.0.92-10 packages don't provide emacs.exe. So you must be using the version you compiled yourself, unless you somehow

Emacs w3m `w3m-toggle-inline-images' cause segfault

2009-07-21 Thread Haojun Bao
Here's how to reproduce it: 1. install w3m-el 2. start Xwin, and then start emacs with: emacs.exe -q -l ~/1.el 3. Press M-x w3m in emacs to start w3m 4. Press g in *w3m* buffer, type http://www.cnn.com/ (I use this URL because it contains many images. A site with few images will not reproduc