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

信号量Semaphore

时间:2019-09-18 16:05:30      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:semaphore   current   read   get   执行   不能   信号   pre   lease   

信号量Semaphore

同进程的一样

Semaphore管理一个内置的计数器,
每当调用acquire()时内置计数器-1;
调用release() 时内置计数器+1;
计数器不能小于0;当计数器为0时,acquire()将阻塞线程直到其他线程调用release()。

from threading import Thread,currentThread,Semaphore
import time

def task():
    sm.acquire()
    print(f'{currentThread().name}在执行')
    time.sleep(3)
    sm.release()

sm=Semaphore(5)
for i in range(15):
    t=Thread(target=task)
    t.start()

信号量Semaphore

标签:semaphore   current   read   get   执行   不能   信号   pre   lease   

原文地址:https://www.cnblogs.com/aden668/p/11542639.html

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