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

python resource模块使用

时间:2020-07-20 10:51:53      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:print   bsp   resource   nic   port   pre   使用   psu   ali   

import os
import psutil
import resource
import subprocess

def preexec_fn():
    pid os.getpid()
    ps = psutil.Process(pid)
    ps.set_nice(10)
    resource.setrlimit(resource.RLIMIT_CPU(11))

print"mother pid"os.getpid()
subprocess.Popen(["./cpuhog.sh"], preexec_fn=preexec_fn)
p.wait()
print"mother still alive with pid"os.getpid()

python resource模块使用

标签:print   bsp   resource   nic   port   pre   使用   psu   ali   

原文地址:https://www.cnblogs.com/qiumingcheng/p/13343084.html

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