Skip to content

Commit b8b7947

Browse files
authored
Document checking whether a process on another node is alive (#13854)
1 parent 03cc629 commit b8b7947

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/elixir/lib/process.ex

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ defmodule Process do
8888
`false`.
8989
9090
`pid` must refer to a process running on the local node or `ArgumentError` is raised.
91+
To check whether a process on any node is alive you can use the [`:erpc`](`:erpc`) module.
92+
93+
:erpc.call(node(pid), Process, :alive?, [pid])
9194
9295
Inlined by the compiler.
9396
"""

0 commit comments

Comments
 (0)