码迷,mamicode.com
首页 > 系统相关 > 详细

进程与生产者消费者模型

时间:2017-07-01 09:51:42      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:print   read   生产者消费者模型   tar   port   name   master   模型   pre   

#!/usr/src/python
# -*- coding:utf-8 -*-

# from multiprocessing import Process
# import time
#
#
# def process_test(name):
# print(‘%s is testing‘%name)
# time.sleep(2)
# print(‘%s test end‘%name)
#
#
# if __name__ == ‘__main__‘:
# p1 = Process(target=process_test, args=(‘larry‘,))
# p2 = Process(target=process_test, args=(‘linzhengjun‘,))
# p3 = Process(target=process_test, args=(‘linzj‘,))
# p4 = Process(target=process_test, args=(‘lzj‘,))
#
# p1.start()
# p2.start()
# p3.start()
# p4.start()
# print(‘master thread‘)

进程与生产者消费者模型

标签:print   read   生产者消费者模型   tar   port   name   master   模型   pre   

原文地址:http://www.cnblogs.com/geek-ace/p/7101305.html

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