gpt4 book ai didi

在 C 中更改当前进程的优先级

转载 作者:太空狗 更新时间:2023-10-29 16:42:38 25 4
gpt4 key购买 nike

在 Windows 上我可以做:

HANDLE hCurrentProcess = GetCurrentProcess();

SetPriorityClass(hCurrentProcess, ABOVE_NORMAL_PRIORITY_CLASS);

我怎样才能在 *nix 上做同样的事情?

最佳答案

尝试:

#include <sys/time.h>
#include <sys/resource.h>

int main(){
setpriority(PRIO_PROCESS, 0, -20);
}

请注意,您必须以 super 用户身份运行才能运行。

(有关更多信息,请在提示符下键入“man setpriority”。)

关于在 C 中更改当前进程的优先级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com