免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1750 | 回复: 0
打印 上一主题 下一主题

python多线程模型问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-03-14 10:05 |只看该作者 |倒序浏览
写了一个简单的多线程程序
(python 2.4)
(4核server)
#!/usr/bin/env python
# -*- coding:gb2312 -*-
import sys
import time
import threading
import os
def run(arg):
        pid = os.getpid()
        print "This thread id:%d" % pid
        print "msg:",arg
        ret = 0
        while True:
                #time.sleep(1)
                ret += 1
print "Parent pid: %d" % os.getpid()
for i in range(0,4):
        msg = "index %d" % i
        ps = threading.Thread(target = run,args =(msg,))
        ps.start()
   
输出:
Parent pid: 7749
This thread id:7751
msg: index 0
This thread id:7752
msg: index 1
This thread id:7753
msg: index 2
This thread id:7754
msg: index 3
pstree -p 输出:
        |-sshd2(18660)-+-sshd2(31624)---bash(31626)---python(7549)---python(7550)-+-python(7551)
        |              |                                                          |-python(7552)
        |              |                                                          |-python(7553)
        |              |                                                          `-python(7554)
        |              `-sshd2(3634)---bash(3636)---pstree(7555)
top,每个线程占用30左右的cpu
问题:
1.python线程模型是哪种?
Linux 线程模型的比较:LinuxThreads 和NPTL
2.为什么每个线程系统占用率不是很高(增加到100线程,每个线程占用 cpu比例为2%)
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/34978/showart_495884.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP