We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While implementing GenServer.ex tests are done for:
{:ok, pid} = GenServer.start_link(Stack, [:hello], name: nil) assert Process.info(pid, :registered_name) == {:registered_name, []}
It's already in exavmlib code base here
AtomVM/libs/exavmlib/lib/Process.ex
Line 347 in 22c0da4
named/registered processes are already implemented, so would be great with :erlang.process_info(pid, :registered_name) support
:erlang.process_info(pid, :registered_name)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While implementing GenServer.ex tests are done for:
It's already in exavmlib code base here
AtomVM/libs/exavmlib/lib/Process.ex
Line 347 in 22c0da4
named/registered processes are already implemented, so would be great with
:erlang.process_info(pid, :registered_name)
support
The text was updated successfully, but these errors were encountered: