Is it possible to renice a subprocess ?
Posted
by ramusus
on Stack Overflow
See other posts from Stack Overflow
or by ramusus
Published on 2010-03-17T15:26:45Z
Indexed on
2010/03/17
15:41 UTC
Read the original article
Hit count: 228
I know about os.nice()
it works perfect for parent process, but I need to do renice of my child subprocesses. I found way to do this, but it seems to be not very handy and too excessive:
os.system("renice -n %d %d" % ( new_nice, suprocess.pid ) )
And it isn't return resulting nice level after renicing.
Is there more clean way to renice subprocesses in python?
© Stack Overflow or respective owner