Manuia Memory Monitor

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Manuia Memory Monitor

Torsten Bergmann
BTW: There is also the old "MemoryUsage" from Squeak (see [1]/[2]).
Dont know if it still works

[1] http://map.squeak.org/package/5307d593-6aa4-496a-94fa-68a5ed82a3ba
[2] http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz
--
GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Manuia Memory Monitor

Stéphane Ducasse

On May 31, 2010, at 5:10 PM, Torsten Bergmann wrote:

> BTW: There is also the old "MemoryUsage" from Squeak (see [1]/[2]).
> Dont know if it still works
>
> [1] http://map.squeak.org/package/5307d593-6aa4-496a-94fa-68a5ed82a3ba

I like the comment :)
        A subclass of ProgressMorph that displays the current VM memory usage.


> [2] http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz
> --
> GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
> Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Manuia Memory Monitor

Alexandre Bergel
In reply to this post by Torsten Bergmann
Interesting. After some minor adaptation (turning _ into := ) it loads fine.
I took some of the ideas and put it in the new version of Memory Profiler.

Gofer new
        squeaksource: 'MemoryMonitor';
        package: 'ConfigurationOfMemoryMonitor';
        load.
((Smalltalk at: #ConfigurationOfMemoryMonitor) project perform: #lastVersion) load.

Cheers,
Alexandre




On 31 May 2010, at 11:10, Torsten Bergmann wrote:

> BTW: There is also the old "MemoryUsage" from Squeak (see [1]/[2]).
> Dont know if it still works
>
> [1] http://map.squeak.org/package/5307d593-6aa4-496a-94fa-68a5ed82a3ba
> [2] http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz
> --
> GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
> Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Screen shot 2010-05-31 at 15.48.11.png (28K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Manuia Memory Monitor

Stéphane Ducasse
good!
how do you compute the memory usage?
Stef

On May 31, 2010, at 9:49 PM, Alexandre Bergel wrote:

> Interesting. After some minor adaptation (turning _ into := ) it loads fine.
> I took some of the ideas and put it in the new version of Memory Profiler.
>
> Gofer new
> squeaksource: 'MemoryMonitor';
> package: 'ConfigurationOfMemoryMonitor';
> load.
> ((Smalltalk at: #ConfigurationOfMemoryMonitor) project perform: #lastVersion) load.
>
> Cheers,
> Alexandre
>
> <Screen shot 2010-05-31 at 15.48.11.png>
>
> On 31 May 2010, at 11:10, Torsten Bergmann wrote:
>
>> BTW: There is also the old "MemoryUsage" from Squeak (see [1]/[2]).
>> Dont know if it still works
>>
>> [1] http://map.squeak.org/package/5307d593-6aa4-496a-94fa-68a5ed82a3ba
>> [2] http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz
>> --
>> GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
>> Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Manuia Memory Monitor

Alexandre Bergel
SmalltalkImage>>vmParameterAt:
A number of parameters are related to the memory usage.

Alexandre


On 31 May 2010, at 16:04, Stéphane Ducasse wrote:

> good!
> how do you compute the memory usage?
> Stef
>
> On May 31, 2010, at 9:49 PM, Alexandre Bergel wrote:
>
>> Interesting. After some minor adaptation (turning _ into := ) it loads fine.
>> I took some of the ideas and put it in the new version of Memory Profiler.
>>
>> Gofer new
>> squeaksource: 'MemoryMonitor';
>> package: 'ConfigurationOfMemoryMonitor';
>> load.
>> ((Smalltalk at: #ConfigurationOfMemoryMonitor) project perform: #lastVersion) load.
>>
>> Cheers,
>> Alexandre
>>
>> <Screen shot 2010-05-31 at 15.48.11.png>
>>
>> On 31 May 2010, at 11:10, Torsten Bergmann wrote:
>>
>>> BTW: There is also the old "MemoryUsage" from Squeak (see [1]/[2]).
>>> Dont know if it still works
>>>
>>> [1] http://map.squeak.org/package/5307d593-6aa4-496a-94fa-68a5ed82a3ba
>>> [2] http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz
>>> --
>>> GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
>>> Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project