Re: [Pharo-project] is the compiler threadsafe?

2009-04-07 Thread Lukas Renggli
> I have a simple question. > Is the compiler thread-safe? Probably not, although the compile itself probably is. Certainly reading and writing the changes file is not thread-save. Also adding methods to classes is not thread-safe. Lukas -- Lukas Renggli http://www.lukas-renggli.ch _

Re: [Pharo-project] is the compiler threadsafe?

2009-04-07 Thread Stéphane Ducasse
this has nothing to do with the VM. Read Smalltalk by example to get a bit more information about conccurency on squeak. I need to know if this is possible to launch a method compilation each a morphic method is executed and since morphic have several thread if this approach makes sense. Thi

[Pharo-project] is the compiler threadsafe?

2009-04-07 Thread Stéphane Ducasse
Hi all I have a simple question. Is the compiler thread-safe? Stef ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] is the compiler threadsafe?

2009-04-07 Thread Mariano Martinez Peck
On Tue, Apr 7, 2009 at 6:03 PM, Stéphane Ducasse wrote: > Hi all > > I have a simple question. > Is the compiler thread-safe? > This is very confusing for me. In one hand, as I understood, standard SqueakVM doesn't have multiple OS threads. The whole VM is run in a single OS thread. This is what