码迷,mamicode.com
首页 > 编程语言 > 详细

python多线程同步机制condition

时间:2017-09-24 12:54:46      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:usr   port   imp   python   cond   rod   source   mat   coding   

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import threading
import time



def customer(cond):
t = threading.currentThread()
with cond:
# wait()方法创建了一个名为waiter的锁,并且设置锁的状态为locked。这个waiter锁用于线程间的通讯
cond.wait()
print ‘{}: Resource is available to consumer‘.format(t.name)

def producer(cond):
t = threading.currentThread()
with cond:
print ‘{}: Making resource available‘.format(t.name)
cond.notifyAll()


if __name__ == "__main__":
cond = threading.Condition()
c1 = threading.Thread(target=customer, args=(cond,), name=‘c1‘)
c2 = threading.Thread(target=customer, args=(cond,), name=‘c2‘)
p1 = threading.Thread(target=producer, args=(cond,), name=‘p1‘)

c1.start()
c2.start()
p1.start()


print ‘Main end‘

python多线程同步机制condition

标签:usr   port   imp   python   cond   rod   source   mat   coding   

原文地址:http://www.cnblogs.com/zejin2008/p/7586683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!