前端之家收集整理的这篇文章主要介绍了
更改C中当前进程的优先级,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在
Windows上我可以做:
HANDLE hCurrentProcess = GetCurrentProcess();
SetPriorityClass(hCurrentProcess,ABOVE_NORMAL_PRIORITY_CLASS);
在nix上怎么做同样的事情?
尝试:
#include <sys/time.h>
#include <sys/resource.h>
int main(){
setpriority(PRIO_PROCESS,-20);
}
请注意,您必须以超级用户身份运行才能正常运行.
(有关详细信息,请在提示符下键入“man setpriority”.)
原文链接:https://www.f2er.com/c/112304.html