本文整理汇总了Python中multiprocessing.Manager.flag方法的典型用法代码示例。如果您正苦于以下问题:Python Manager.flag方法的具体用法?Python Manager.flag怎么用?Python Manager.flag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类multiprocessing.Manager
的用法示例。
在下文中一共展示了Manager.flag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Manager
# 需要导入模块: from multiprocessing import Manager [as 别名]
# 或者: from multiprocessing.Manager import flag [as 别名]
# -*- coding: utf-8 -*-
import multiprocessing, threading, os, time
from multiprocessing import Manager
cpu_count = 4
shared = Manager().Namespace()
shared.flag = True
#
# def task():
# print "[%s] start" % (os.getpid())
# while shared.flag:
# print "[%s] is running" % os.getpid()
# time.sleep(3)
#
def stop(t):
print "stop process[%s] start" % os.getpid()
time.sleep(int(t))
shared.flag = False
print "stop all process"
#
# if __name__ == '__main__':
# p = multiprocessing.Pool(cpu_count)
# print "father[%s]" % (os.getpid())
# for i in range(cpu_count - 1):
# p.apply_async(task)
# p.apply_async(stop, args=(10, ))
# p.close()
# p.join()
# print "end"