野性白猫

文章
4
资源
0
加入时间
2年10月17天

改变进程的优先级

可以通过改变进程的优先级来保证进程优先运行。在 Linux下,通过系统调用 nice()可以改变进程的优先级。nice()系统调用用来改变调用进程的优先级。函数声明如下:引用#include <unistd.h>int nice( int increment );getpriority() 和 setpriority() 两函数的声明:引用#includ...