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”.)