Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-10-06 Thread Guillermo Polito
On Fri, Oct 6, 2017 at 4:52 PM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > Hi Guille > > 2017-10-03 9:15 GMT-03:00 Guillermo Polito : > >> I've been bitten by this dozens of times. >> >> The problem seems to be that a second UI process is created and

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-10-06 Thread Hernán Morales Durand
Hi Guille 2017-10-03 9:15 GMT-03:00 Guillermo Polito : > I've been bitten by this dozens of times. > > The problem seems to be that a second UI process is created and thus the > DNU exception is automatically resumed (indefinitely). Executing the > following expression

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-10-03 Thread Guillermo Polito
I've been bitten by this dozens of times. The problem seems to be that a second UI process is created and thus the DNU exception is automatically resumed (indefinitely). Executing the following expression seems to remove the problem: UIManager default spawnNewProcess Still, I do not know the

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-09-27 Thread Stephane Ducasse
Hi hernan Indeed it would be nice to have a solution for such case. Now we did not look at it. Stef On Tue, Sep 26, 2017 at 5:58 AM, Hernán Morales Durand wrote: > Hi Tim, > > Yes, I am aware of such menu item. However I would like to know if > someone is working in a

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-09-25 Thread Hernán Morales Durand
Hi Tim, Yes, I am aware of such menu item. However I would like to know if someone is working in a more architectural solution. Because I guess this would imply to hook message sends into the main feedback loop. Cheers, Hernán 2017-09-25 20:08 GMT-03:00 Tim Mackinnon : > Its

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-09-25 Thread Tim Mackinnon
Its not quite what you are asking for, but if you right click on one of those windows, someone has helpfully added a “close all windows to right” option, which does let you rapidly get rid of them. Tim > On 25 Sep 2017, at 23:16, Hernán Morales Durand > wrote: > >

Re: [Pharo-dev] Never-ending computations and cmd-dot

2017-09-25 Thread Esteban A. Maringolo
I think the problem doesn't come from a lot of Ctrl+., but for another unhandled exception. I've been bitten by that from time to time, usually in the context of a MessageNotUnderstood exception that gets recursive. Regards, Esteban A. Maringolo 2017-09-25 19:16 GMT-03:00 Hernán Morales