Skip to content

Commit

Permalink
Document checking whether a process on another node is alive (#13854)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanl authored Sep 23, 2024
1 parent 03cc629 commit b8b7947
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/elixir/lib/process.ex
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ defmodule Process do
`false`.
`pid` must refer to a process running on the local node or `ArgumentError` is raised.
To check whether a process on any node is alive you can use the [`:erpc`](`:erpc`) module.
:erpc.call(node(pid), Process, :alive?, [pid])
Inlined by the compiler.
"""
Expand Down

0 comments on commit b8b7947

Please sign in to comment.