Hi,
I've just built a new image based on PharoCore1.0rc1 Latest update: #10496, and MC freezes the image whenever I try to open a package. I can view a repo, but not open or load the packages. Is there anyway to rebuild MC, without rebuilding the entire image again? There is no debug file written out, just the CPU pegged at 99% and an unresponsive image.
-- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions.
Maybe you can also try to remove the package cache and also evaluate (backup the image first): MCFileBasedRepository flushAllCaches. MCMethodDefinition shutDown. MCDefinition clearInstances. Or even ScriptLoader new cleanUpForRelease Cheers Mariano 2010/1/11 John Toohey <[hidden email]> Hi, _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC?
2010/1/11 Mariano Martinez Peck <[hidden email]> Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions. -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
And what about what I told you about reloading again the two versions?
Sometimes I have problems with my proxy and I have to evaluate: HTTPSocket stopUsingProxyServer. 2010/1/11 John Toohey <[hidden email]> Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC? _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again.
2010/1/12 Mariano Martinez Peck <[hidden email]> And what about what I told you about reloading again the two versions? -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Ok....if this is your error, I am genius :)
I found this issue: http://code.google.com/p/pharo/issues/detail?id=1293 And then, I know you are using GlorpDBX......So, as I am developer, I know that the GlorpDBX loader, do this to load the fix to the underscore: (HTTPSocket httpGet: 'http://www.assembla.com/spaces/SqueakDBX/documents/dvVhPSvuCr3OqXeJe5aVNr/download/underscore.cs') readStream fileIn. So....maybe you are having that bug already reported. Sorry I don't have time to test it. Cheers Mariano 2010/1/12 John Toohey <[hidden email]> Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again. _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Not sure if this is what I have, I've just tried to save some code to my own repo, and although it seems like the code was updated, after MC puts the version info dialog on the screen, everything is frozen again. I still don't understand how the entire image can freeze over something like this.
2010/1/12 Mariano Martinez Peck <[hidden email]> Ok....if this is your error, I am genius :) -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Found the MC tests, and have 5 errors and 1 failure. All of them seem to be when its reading a file and gets an error in UUID>>fromString. I guess this is part of the problem that I am having.
On Tue, Jan 12, 2010 at 12:05, John Toohey <[hidden email]> wrote: Not sure if this is what I have, I've just tried to save some code to my own repo, and although it seems like the code was updated, after MC puts the version info dialog on the screen, everything is frozen again. I still don't understand how the entire image can freeze over something like this. -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Download the 10506 Core image, and the tests pass there. So I installed the DEV environment, Glorp, Seaside, and my apps. These are all loaded via Gofer. Everything looks promising until, I do a Gofer commit, or just try to browse a repo with MC. CPUs at 99% and the image freezes.
I'm having a hard time understanding how a tool like MC can shutdown the entire image, with no error message. None of the earlier Pharo builds were that unstable. I'm not reduced to filing out all my code changes, and saving them in Git.
On Tue, Jan 12, 2010 at 12:32, John Toohey <[hidden email]> wrote: Found the MC tests, and have 5 errors and 1 failure. All of them seem to be when its reading a file and gets an error in UUID>>fromString. I guess this is part of the problem that I am having. -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
I have no idea what your problem is. With a clean 10506 image, you can commit and browse MC (forget Gofer) ?? If true, go installing tool per tool and checking when it stops working.
2010/1/12 John Toohey <[hidden email]> Download the 10506 Core image, and the tests pass there. So I installed the DEV environment, Glorp, Seaside, and my apps. These are all loaded via Gofer. Everything looks promising until, I do a Gofer commit, or just try to browse a repo with MC. CPUs at 99% and the image freezes. _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by John Toohey
this is strange. can you reproduce the problem?
Stef On Jan 12, 2010, at 4:21 PM, John Toohey wrote: > Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again. > > > 2010/1/12 Mariano Martinez Peck <[hidden email]> > And what about what I told you about reloading again the two versions? > > Sometimes I have problems with my proxy and I have to evaluate: > > HTTPSocket stopUsingProxyServer. > > > 2010/1/11 John Toohey <[hidden email]> > Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC? > > > 2010/1/11 Mariano Martinez Peck <[hidden email]> > > Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions. > > Maybe you can also try to remove the package cache and also evaluate (backup the image first): > > MCFileBasedRepository flushAllCaches. > MCMethodDefinition shutDown. > MCDefinition clearInstances. > > Or even > > ScriptLoader new cleanUpForRelease > > Cheers > > Mariano > > > 2010/1/11 John Toohey <[hidden email]> > Hi, > I've just built a new image based on PharoCore1.0rc1 Latest update: #10496, and MC freezes the image whenever I try to open a package. I can view a repo, but not open or load the packages. Is there anyway to rebuild MC, without rebuilding the entire image again? There is no debug file written out, just the CPU pegged at 99% and an unresponsive image. > > -- > -JT > > > > _______________________________________________ > 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 > > > > -- > -JT > > > > _______________________________________________ > 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 > > > > -- > -JT > > > _______________________________________________ > 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 |
In reply to this post by John Toohey
> Download the 10506 Core image, and the tests pass there. So I installed the DEV environment, Glorp, Seaside, and my apps. These are all loaded via Gofer. Everything looks promising until, I do a Gofer commit, or just try to browse a repo with MC. CPUs at 99% and the image freezes.
We should really try to understand. Because there is nothing as bad as an image freeze. > I'm having a hard time understanding how a tool like MC can shutdown the entire image, with no error message. None of the earlier Pharo builds were that unstable. I'm not reduced to filing out all my code changes, and saving them in Git. can you get a debugger? > > On Tue, Jan 12, 2010 at 12:32, John Toohey <[hidden email]> wrote: > Found the MC tests, and have 5 errors and 1 failure. All of them seem to be when its reading a file and gets an error in UUID>>fromString. I guess this is part of the problem that I am having. Yes > > > On Tue, Jan 12, 2010 at 12:05, John Toohey <[hidden email]> wrote: > Not sure if this is what I have, I've just tried to save some code to my own repo, and although it seems like the code was updated, after MC puts the version info dialog on the screen, everything is frozen again. I still don't understand how the entire image can freeze over something like this. > > > 2010/1/12 Mariano Martinez Peck <[hidden email]> > Ok....if this is your error, I am genius :) > > I found this issue: http://code.google.com/p/pharo/issues/detail?id=1293 > > And then, I know you are using GlorpDBX......So, as I am developer, I know that the GlorpDBX loader, do this to load the fix to the underscore: > > (HTTPSocket httpGet: 'http://www.assembla.com/spaces/SqueakDBX/documents/dvVhPSvuCr3OqXeJe5aVNr/download/underscore.cs') readStream fileIn. > > So....maybe you are having that bug already reported. > > Sorry I don't have time to test it. > > Cheers > > Mariano > > 2010/1/12 John Toohey <[hidden email]> > > Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again. > > > 2010/1/12 Mariano Martinez Peck <[hidden email]> > > And what about what I told you about reloading again the two versions? > > Sometimes I have problems with my proxy and I have to evaluate: > > HTTPSocket stopUsingProxyServer. > > > 2010/1/11 John Toohey <[hidden email]> > Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC? > > > 2010/1/11 Mariano Martinez Peck <[hidden email]> > > Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions. > > Maybe you can also try to remove the package cache and also evaluate (backup the image first): > > MCFileBasedRepository flushAllCaches. > MCMethodDefinition shutDown. > MCDefinition clearInstances. > > Or even > > ScriptLoader new cleanUpForRelease > > Cheers > > Mariano > > > 2010/1/11 John Toohey <[hidden email]> > Hi, > I've just built a new image based on PharoCore1.0rc1 Latest update: #10496, and MC freezes the image whenever I try to open a package. I can view a repo, but not open or load the packages. Is there anyway to rebuild MC, without rebuilding the entire image again? There is no debug file written out, just the CPU pegged at 99% and an unresponsive image. > > -- > -JT > > > > _______________________________________________ > 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 > > > > -- > -JT > > > > _______________________________________________ > 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 > > > > -- > -JT > > > > _______________________________________________ > 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 > > > > -- > -JT > > > > > > -- > -JT > > > > > > -- > -JT > > > _______________________________________________ > 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 |
In reply to this post by Stéphane Ducasse
Yep.
1. Download PharoCore. 2. Install Lukas's development environment via Gofer 3. Via Gofer install Seasside 3, JQWidgetBox, GlorpDBX, and my apps 4. Update a method and do do a Gofer commit or: Browse a repo with MC, and click on a package name
Image freezes. With 10504, there were failing MC tests, and these errors had appeared in an earlier image, which is why I started to update to the latest images. The tests work in 10506, but somewhere in the process I corrupt MC.
On Tue, Jan 12, 2010 at 15:39, Stéphane Ducasse <[hidden email]> wrote: this is strange. can you reproduce the problem? -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by Stéphane Ducasse
No debugger, unfortunately. Although I really like Gofer, I also just used MC to build my image, with the same results. Is there someway to break into a locked image, and get a process browser or force a debugger to come up.
On Tue, Jan 12, 2010 at 15:43, Stéphane Ducasse <[hidden email]> wrote:
-- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by John Toohey
when you say freeze do you wait enough for a network time out.
Because if you bug is related to a network problem you may be block in a smeaphore Did you try to do command . to get a debugger. Stef On Jan 12, 2010, at 9:47 PM, John Toohey wrote: > Yep. > 1. Download PharoCore. > 2. Install Lukas's development environment via Gofer > 3. Via Gofer install Seasside 3, JQWidgetBox, GlorpDBX, and my apps > 4. Update a method and do do a Gofer commit or: Browse a repo with MC, and click on a package name > Image freezes. > > With 10504, there were failing MC tests, and these errors had appeared in an earlier image, which is why I started to update to the latest images. The tests work in 10506, but somewhere in the process I corrupt MC. > > On Tue, Jan 12, 2010 at 15:39, Stéphane Ducasse <[hidden email]> wrote: > this is strange. can you reproduce the problem? > > > Stef > > On Jan 12, 2010, at 4:21 PM, John Toohey wrote: > > > Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again. > > > > > > 2010/1/12 Mariano Martinez Peck <[hidden email]> > > And what about what I told you about reloading again the two versions? > > > > Sometimes I have problems with my proxy and I have to evaluate: > > > > HTTPSocket stopUsingProxyServer. > > > > > > 2010/1/11 John Toohey <[hidden email]> > > Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC? > > > > > > 2010/1/11 Mariano Martinez Peck <[hidden email]> > > > > Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions. > > > > Maybe you can also try to remove the package cache and also evaluate (backup the image first): > > > > MCFileBasedRepository flushAllCaches. > > MCMethodDefinition shutDown. > > MCDefinition clearInstances. > > > > Or even > > > > ScriptLoader new cleanUpForRelease > > > > Cheers > > > > Mariano > > > > > > 2010/1/11 John Toohey <[hidden email]> > > Hi, > > I've just built a new image based on PharoCore1.0rc1 Latest update: #10496, and MC freezes the image whenever I try to open a package. I can view a repo, but not open or load the packages. Is there anyway to rebuild MC, without rebuilding the entire image again? There is no debug file written out, just the CPU pegged at 99% and an unresponsive image. > > > > -- > > -JT > > > > > > > > _______________________________________________ > > 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 > > > > > > > > -- > > -JT > > > > > > > > _______________________________________________ > > 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 > > > > > > > > -- > > -JT > > > > > > _______________________________________________ > > 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 > > > > -- > -JT > > > _______________________________________________ > 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 |
Would CPU be 99% if he were blocking on a semaphore?
Cheers, Henry On 12.01.2010 21:54, Stéphane Ducasse wrote: > when you say freeze do you wait enough for a network time out. > Because if you bug is related to a network problem you may be block in a smeaphore > Did you try to do command . to get a debugger. > > Stef > > On Jan 12, 2010, at 9:47 PM, John Toohey wrote: > > >> Yep. >> 1. Download PharoCore. >> 2. Install Lukas's development environment via Gofer >> 3. Via Gofer install Seasside 3, JQWidgetBox, GlorpDBX, and my apps >> 4. Update a method and do do a Gofer commit or: Browse a repo with MC, and click on a package name >> Image freezes. >> >> With 10504, there were failing MC tests, and these errors had appeared in an earlier image, which is why I started to update to the latest images. The tests work in 10506, but somewhere in the process I corrupt MC. >> >> On Tue, Jan 12, 2010 at 15:39, Stéphane Ducasse<[hidden email]> wrote: >> this is strange. can you reproduce the problem? >> >> >> Stef >> >> On Jan 12, 2010, at 4:21 PM, John Toohey wrote: >> >> >>> Rebuilt a new image from scratch, using the rc1 Core image, and everything was fine, until I did a "Save As" in order to rename the image. After that MC stops working again. Just completing another rebuild now, and will try to move the renamed image to another directory, before using MC again. >>> >>> >>> 2010/1/12 Mariano Martinez Peck<[hidden email]> >>> And what about what I told you about reloading again the two versions? >>> >>> Sometimes I have problems with my proxy and I have to evaluate: >>> >>> HTTPSocket stopUsingProxyServer. >>> >>> >>> 2010/1/11 John Toohey<[hidden email]> >>> Did the cleanUpForRelease, but MC still hangs. Do you know what DEV image is the most stable right now, or is there a way to enable debug output from MC? >>> >>> >>> 2010/1/11 Mariano Martinez Peck<[hidden email]> >>> >>> Maybe you can reload the Monticello and MonticelloGUI package from the repository Pharo. However, I would check in that 10496 image which were the versions of those two packages and I would download exactly those two versions. >>> >>> Maybe you can also try to remove the package cache and also evaluate (backup the image first): >>> >>> MCFileBasedRepository flushAllCaches. >>> MCMethodDefinition shutDown. >>> MCDefinition clearInstances. >>> >>> Or even >>> >>> ScriptLoader new cleanUpForRelease >>> >>> Cheers >>> >>> Mariano >>> >>> >>> 2010/1/11 John Toohey<[hidden email]> >>> Hi, >>> I've just built a new image based on PharoCore1.0rc1 Latest update: #10496, and MC freezes the image whenever I try to open a package. I can view a repo, but not open or load the packages. Is there anyway to rebuild MC, without rebuilding the entire image again? There is no debug file written out, just the CPU pegged at 99% and an unresponsive image. >>> >>> -- >>> -JT >>> >>> >>> >>> _______________________________________________ >>> 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 >>> >>> >>> >>> -- >>> -JT >>> >>> >>> >>> _______________________________________________ >>> 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 >>> >>> >>> >>> -- >>> -JT >>> >>> >>> _______________________________________________ >>> 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 >> >> >> >> -- >> -JT >> >> >> _______________________________________________ >> 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 > > > _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by Stéphane Ducasse
Sorry about the vague terminology. My cursor is the standard hourglass, both CPUs are pegged at 99.9% with fans blowing, and I've let it wait for at least 15 minutes, if not longer, while I was on the phone etc. It doesn't come back. I can access the VM menus, but the image is unresponsive.
On Tue, Jan 12, 2010 at 15:54, Stéphane Ducasse <[hidden email]> wrote: when you say freeze do you wait enough for a network time out. -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by Henrik Sperre Johansen
Try a system interrupt as Stef said. I don't remember the shortcut.... ctrl . - ?
Maybe a problem with the UUID plugin ? You said you have mac os and Linux, it happens in both ? Cheers
On Tue, Jan 12, 2010 at 5:57 PM, Henrik Sperre Johansen <[hidden email]> wrote: Would CPU be 99% if he were blocking on a semaphore? _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
- Can't break out of it.
- Where are the plugins stored for an image, should I have a directory for this? 2010/1/12 Mariano Martinez Peck <[hidden email]> Try a system interrupt as Stef said. I don't remember the shortcut.... ctrl . - ? -- -JT _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
In reply to this post by Mariano Martinez Peck
Hope this helps to interrupt : http://wiki.squeak.org/squeak/899 http://wiki.squeak.org/squeak/1542 Benoit St-Jean Yahoo! Messenger: bstjean Blog: lamneth.wordpress.com A standpoint is an intellectual horizon of radius zero. (Albert Einstein) From: Mariano Martinez Peck <[hidden email]> To: [hidden email] Sent: Tue, January 12, 2010 4:02:41 PM Subject: Re: [Pharo-project] Corrupted Monticello Try a system interrupt as Stef said. I don't remember the shortcut.... ctrl . - ? Maybe a problem with the UUID plugin ? You said you have mac os and Linux, it happens in both ? Cheers
On Tue, Jan 12, 2010 at 5:57 PM, Henrik Sperre Johansen <[hidden email]> wrote: Would CPU be 99% if he were blocking on a semaphore? The new Internet Explorer® 8 - Faster, safer, easier. Optimized for Yahoo! Get it Now for Free! _______________________________________________ Pharo-project mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project |
Free forum by Nabble | Edit this page |