码迷,mamicode.com
首页 > 其他好文 > 详细

信号量

时间:2018-05-16 00:40:14      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:信号   main   任务   sleep   read   def   时间   targe   执行   

信号量也是一把锁,可以指定信号量为5,对比互斥锁同一时间只能有一个任务抢到锁执行任务

from threading import Thread,Semaphore,current_thread
import time,random
sm=Semaphore(5)
def task():
    # sm.acquire()
    # print("%s in" % current_thread().getName())
    # time.sleep(random.randrange(1,4))
    # sm.release()
    with sm:
        print("%s in" % current_thread().getName())
        time.sleep(random.randrange(1, 4))
if __name__=="__main__":
    for i in range(100):
        t=Thread(target=task)
        t.start()

 

信号量

标签:信号   main   任务   sleep   read   def   时间   targe   执行   

原文地址:https://www.cnblogs.com/yaya625202/p/9043389.html

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