6

我从这里http://cs.ucsb.edu/~puneet/reports/erlang.pdf(第 4.4 节)了解到 Erlang 中的进程调度基于 4 个不同的队列 - 其中一个被指定为“最高优先级”。我有一个 Erlang 程序,我想分配一个进程,以便它的指令加入这个队列。有没有办法做到这一点?这样做时是否有任何观察?

4

1 回答 1

7

在这里查看 Erlang 的文档。有一个 BIF,称为process_flag(Flag, Option).

process_flag(priority, Level)
% This sets the process priority. Level is an atom. 
% There are currently four priority levels: low, normal, high, and max. 
% The default is normal.
于 2012-11-14T11:13:37.830 回答