Erlang Linux signal handling

匿名 (未验证) 提交于 2019-12-03 02:49:01

问题:

Is it possible to trap Linux signals (e.g. SIGUSR1) through an handler in Erlang? (without having to resort to a driver crafted in C)

回答1:

(NOT A REAL ANSWER)

In 2001 someone asked:

Does anyone have any examples of unix signal handling in erlang. I would like to make a loadbalancer that I have written respond to sighup.

At that time the answer was:

There is no provision for handling signals in Erlang "itself", i.e. you will need to use a driver - or a port program of course, might actually be a better idea. Also for the driver case, the emulator has its own handler for a number of signals, and interfering with that will probably have "interesting" results - but SIGHUP should be OK I believe.

SOURCE: http://www.erlang.org/pipermail/erlang-questions/2001-October/003752.html

As far as I know, nothing changed since then. But this is extremely interesting. If anyone has any news about this, please let us know :)



回答2:

There is a pull request that adds an event manager for signals. It's not merged yet, but it might make it into Erlang/OTP 20, due to be released in June 2017.



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!