如何更改 Erlang VM 的进程名称?
How do I change the process name of an Erlang VM?
It isn't very convenient to have beam
listed when I do ps -A
...
Somewhat related to: changing the process name of a python script
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Linux 中,您必须用 C 语言覆盖 argv[0] 的内容。现在如何从 erlang 做到这一点......好吧,你可能需要从 C 包装器中启动 erlang 进程......只是我的 2 美分
You would have to overwrite the content of argv[0] in C in Linux. Now how to do that from erlang ... Well you might need to start the erlang process from within a C wrapper .. Just my 2 cent