python多线程编程(4): 死锁和可重入锁
摘要:
死锁在线程间共享多个资源的时候,如果两个线程分别占有一部分资源并且同时等待对方的资源,就会造成死锁。尽管死锁很少发生,但一旦发生就会造成应用的停止响应。下面看一个死锁的例子:# encoding: UTF-8import threadingimport timeclass MyThread(threading.Thread): def do1(self): global resA, resB if mutexA.acquire(): msg = self.name+' got resA' print msg ... 阅读全文
posted @ 2013-07-24 16:23 TonyCoolZhu 阅读(316) 评论(0) 推荐(0) 编辑