I understand from here http://cs.ucsb.edu/~puneet/reports/erlang.pdf (section 4.4) that Process Scheduling in Erlang is based on 4 different queues – with one designated as ‘highest priority’. I have an Erlang program and I’d like to assign one process so that its instructions join this queue. Is there a way to do this? Are there any watch-its when doing this?
I understand from here http://cs.ucsb.edu/~puneet/reports/erlang.pdf (section 4.4) that Process Scheduling in Erlang is based
Share
Check Erlang’s doc here. There is a BIF called
process_flag(Flag, Option).