Beginner question on threads - solved

2007-05-06 Thread Teresa Hardy
If there is the possibility that the same thread had acquired the lock earlier, you should use an RLock instead. Gabriel, Thanks for the great hint. I didn't find RLock in my initial reading. So as I read up on RLock, I did a quick search on vlock. It turns out that I was using vlock as a varia

Re: Beginner question on threads

2007-04-29 Thread Gabriel Genellina
En Sun, 29 Apr 2007 22:50:59 -0300, Teresa Hardy <[EMAIL PROTECTED]> escribió: > I have successfully made the threading work on a Window XP machine with > quad > processors but now I am trying to pass some variables around and am > fighting > with Lock() If there is the possibility that the

Beginner question on threads

2007-04-29 Thread Teresa Hardy
I have successfully made the threading work on a Window XP machine with quad processors but now I am trying to pass some variables around and am fighting with Lock() I have searched through several different documents and forums, some of which hint at problems with threading on Windows machines s