python resource模块使用

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()

posted @ 2020-07-20 06:09  邱明成  阅读(3934)  评论(0编辑  收藏  举报