タグ

ブックマーク / yatt.hatenablog.jp (1)

  • Pythonで排他制御を試す - yattのブログ

    threadingモジュールにセマフォがあるそうな。 LockとRLockの違い、SemaphoreとBoundedSemaphoreの違いがよくわからない。勉強不足だ。 http://docs.python.org/library/threading.html?highlight=threading#module-threading # coding: utf-8 import threading class Plugin(threading.Thread): def __init__(self, fun): threading.Thread.__init__(self) self.fun = fun def run(self): self.fun() class ThreadGroup(object): # addメソッドに関数が渡された場合 # Pluginクラスに渡して実行 # t

    Pythonで排他制御を試す - yattのブログ
    ideo
    ideo 2010/11/17
    pythonでの排他処理について。セマフォ/ミューテックス
  • 1