python resource模块使用
2021-04-13 06:28
标签:print bsp resource nic port pre 使用 psu ali import os python resource模块使用 标签:print bsp resource nic port pre 使用 psu ali 原文地址:https://www.cnblogs.com/qiumingcheng/p/13343084.html
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, (1, 1))
print"mother pid", os.getpid()
p = subprocess.Popen(["./cpuhog.sh"], preexec_fn=preexec_fn)
p.wait()
print"mother still alive with pid", os.getpid()
上一篇:初入GO语言-Go语言的%d,%p,%v等占位符的使用
下一篇:05go数组
文章标题:python resource模块使用
文章链接:http://soscw.com/index.php/essay/75073.html