Re: [Pharo-dev] Memory leaks with Spec?

2013-05-28 Thread Sean P. DeNigris
://pharo.fogbugz.com/f/cases/10787/Make-Announcements-Weak-By-Default Blocked on Issue 4312: Ephemerons integration - Cheers, Sean -- View this message in context: http://forum.world.st/Pharo-dev-Memory-leaks-with-Spec-tp4689839p4690513.html Sent from the Pharo Smalltalk Developers mailing list

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-27 Thread Goubier Thierry
Le 25/05/2013 13:59, Benjamin a écrit : I am pretty sure to only use weak registration (why aren't all the registration weak btw ??) It may be a problem somewhere else :( I hit that problem a while ago. I couldn't find where it was holding the instances, even with the help of the strong

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-27 Thread Clément Bera
2013/5/27 stephane ducasse stephane.duca...@free.fr we found the problem. It is not spec but the EyeInspector polling update. So we should find a solution. Probably it should register WindowClosed and kill the process. Actually the inspector is already registered on WindowClosed event. This

[Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Stéphane Ducasse
Hi guys this is strange I cannot get rid of Spec based ui instances. I tried many LoggerUI allInstances do: [ :each | SystemAnnouncer uniqueInstance unsubscribe: each ] LoggerUI allInstances do: #delete. Smalltalk garbageCollect Nothing changes. Each time I create and close it does

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Benjamin
I am pretty sure to only use weak registration (why aren't all the registration weak btw ??) It may be a problem somewhere else :( Ben On May 25, 2013, at 1:55 PM, Igor Stasenko siguc...@gmail.com wrote: On 25 May 2013 13:49, Stéphane Ducasse stephane.duca...@inria.fr wrote: Hi guys this

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Igor Stasenko
On 25 May 2013 14:01, stephane ducasse stephane.duca...@free.fr wrote: Igor I will use weak (may be weak should be default and we should propose strong as an option) but I do not understand since LoggerUI allInstances do: [ :each | SystemAnnouncer uniqueInstance unsubscribe: each ]

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Sean P. DeNigris
maybe have announcer on:... which gives you weak subscriptions and announcer strong on:... following Make common things easy, rare things possible - Cheers, Sean -- View this message in context: http://forum.world.st/Pharo-dev-Memory-leaks-with-Spec-tp4689839p4689852.html Sent from the Pharo

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Sean P. DeNigris
Sean P. DeNigris wrote Yes!!! From http://forum.world.st/Unsubscribing-for-Announcements-tp3220751p4083086.html : But IIRC ephemerons are needed for subscribing blocks that way... - Cheers, Sean -- View this message in context: http://forum.world.st/Pharo-dev-Memory-leaks-with-Spec