首页 > 编程语言 > 详细

Python 多进程

时间:2014-06-20 13:57:38      阅读:293      评论:0      收藏:0      [点我收藏+]
import threading
from time import sleep
from msalt_proxy.client import Client
def f(t):
  print t
  cli=Client(t,‘*‘,role=‘server‘)
  cli.sys.ping()
from multiprocessing import Process
if __name__ == ‘__main__‘:
     p = Process(target=f, args=(‘ljx2‘,))
     p.start()
     p.join()
     p1 = Process(target=f, args=(‘ljx1,))
     p1.start()
     p1.join()

  

Python 多进程,布布扣,bubuko.com

Python 多进程

原文:http://www.cnblogs.com/Xjng/p/3794948.html

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