how to permanently unload Squeak plugin...?

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

how to permanently unload Squeak plugin...?

LawsonEnglish
Is there a way to permanently unload a Squeak plugin without recompiling
the VM?

I've tried

Smalltalk unloadModule: 'APluginName'.

but as soon as I call a method that uses the plugin, it loads back up.
I'm trying to get a feel for speed without the usual plugins.

Reply | Threaded
Open this post in threaded view
|

Re: how to permanently unload Squeak plugin...?

Eliot Miranda-2


On Sun, Dec 26, 2010 at 4:07 AM, Lawson English <[hidden email]> wrote:
Is there a way to permanently unload a Squeak plugin without recompiling the VM?

I've tried

Smalltalk unloadModule: 'APluginName'.

but as soon as I call a method that uses the plugin, it loads back up. I'm trying to get a feel for speed without the usual plugins.

No need to unload the plugins.  Simply edit the methods to remove the primitive invocations. 



Reply | Threaded
Open this post in threaded view
|

Re: how to permanently unload Squeak plugin...?

LawsonEnglish
In a word: doh!

And thanks.  ;-)

Lawson

On 12/26/10 11:12 AM, Eliot Miranda wrote:


On Sun, Dec 26, 2010 at 4:07 AM, Lawson English <[hidden email]> wrote:
Is there a way to permanently unload a Squeak plugin without recompiling the VM?

I've tried

Smalltalk unloadModule: 'APluginName'.

but as soon as I call a method that uses the plugin, it loads back up. I'm trying to get a feel for speed without the usual plugins.

No need to unload the plugins.  Simply edit the methods to remove the primitive invocations.