有谁知道在多处理中创建进程或池时设置其 niceness 值的简单方法?
问问题
2277 次
2 回答
14
os.nice(increment)
Add increment to the process’s “niceness”. Return the new niceness. Availability: Unix.
来自http://docs.python.org/library/os.html#os.nice。
有没有理由不能在子进程中调用它?
于 2010-02-02T03:26:10.123 回答
0
尝试导入 ctypes 模块并寻找 pthread_schedparam() 或 SetThreadPriority() (Linux / Windows)。
于 2010-02-02T01:47:43.367 回答