- 论坛徽章:
- 0
|
代码如下- import threading
- import time
- import Queue
- Q = Queue.Queue()
- Q_process = Queue.Queue()
- lock = threading.Lock()
- lock2 = threading.Lock()
- def do(Q, Q_process, i):
- #log = build_logger('down %s'%i)
- # threading loop
- print 'thread %s start'%(i)
- while True:
- if Q.empty():
- print('thread %s Queue is empty will be quit'%(i))
- break
- print 'wait lock %s'%(i)
- if lock.acquire(1):
- print 'lock in %s'%(i)
- num = Q.get()
- lock.release()
- print 'release lock %s'%(i)
- num = num * 100
- print 'wait lock2 %s'%(i)
- if lock2.acquire(1):
- print 'lock2 in %s'%(i)
- Q_process.put(num)
- lock2.release()
- print 'release lock2 %s'%(i)
- for x in range(5000):
- Q.put(x)
- tlist = []
- for i in range(100):
- t = threading.Thread(target = do, args = (Q, Q_process, i))
- tlist.append([t,i])
- t.start()
- for x in tlist:
- t, i = x
- print 'waiting %s'%(i)
- t.join()
- print '%s over'%(i)
- print '! ' * 100
- while True:
- if Q_process.empty():
- print 'empty'
- break
- num = Q_process.get()
- print num
复制代码 100%跑死,是哪里问题? |
|