码迷,mamicode.com
首页 > 编程语言 > 详细

Python 多进程

时间:2014-06-21 11:05:27      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:class   blog   tar   get   art   name   

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 多进程

标签:class   blog   tar   get   art   name   

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

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