semaphores and Rlocks
Laura Creighton
lac at strakt.com
Fri Dec 20 05:20:21 EST 2002
More information about the Python-list mailing list
Fri Dec 20 05:20:21 EST 2002
- Previous message (by thread): semaphores and Rlocks
- Next message (by thread): semaphores and Rlocks
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
1. Don't use thread, use threading. 2. If at all possible, use Queues. You almost never need to mess around with locks at all, it really is dead simple and you are probably making things harder for yourself than they need be because you remember some hard way you had to do it before. 3. http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/82965 and the other recipes in the Python Cookbook about threads might get you started. Laura
- Previous message (by thread): semaphores and Rlocks
- Next message (by thread): semaphores and Rlocks
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list