首页 > 其他 > 详细

信号量 semaphore

时间:2018-11-18 15:54:48      阅读:168      评论:0      收藏:0      [点我收藏+]

import threading, time


def run(n):
semaphore.acquire()
time.sleep(1)
print("run the thread: %s\n" % n)
semaphore.release()

if __name__ == ‘__main__‘:
semaphore = threading.BoundedSemaphore(5) # 最多允许5个线程同时运行
for i in range(22):
t = threading.Thread(target=run, args=(i,))
t.start()
while threading.active_count() != 1:
pass # print threading.active_count()
else:
print(‘----all threads done---‘)
#print(num)

信号量 semaphore

原文:https://www.cnblogs.com/rongye/p/9977983.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!