How do I kill a process in Erlang knowing only the module name used to start it?
erlang
Solution
There is no way to do that.
Your best bet is to speculate based on the the registered name and/or the initial call of your processes.
Problem
How do I kill a process in Erlang knowing only the module name used to start it?