On a Linux system, running apache2 as a non-privileged user you can not increase the niceness of the process after decreasing it. Also, you can not use the apache_child_ terminate either. I found the following does work though:<?php//decrease nicenessproc_nice(19);//kill child process to "reset" nicenessposix_kill( getmypid(), 28 );?>