2012-01-21から1日間の記事一覧

threading.semaphore

semaphore排他オブジェクトです。 threading.Semaphoreとthreading.BoundedSemaphoreがあります。 import time import thread import threading import random counter = 0 counter = 0 def semaphore_func(semaphore): with semaphore: thread_func() globa…

threading.Condition

Conditionという排他オブジェクトです。 import time import threading class MyThread(threading.Thread): lock = threading.Lock() def __init__(self, name, lifetime, condition): threading.Thread.__init__(self) self.lifetime = lifetime self.condi…