maybe(A, B) = {ok, A} | {error, B}
proc() = pid() | atom() | {atom(), node()}
whynot(B) = ok | {error, B}
| flush/0 | flush() causes the calling process's message queue to be emptied. |
| flush/1 | flush() causes the calling process's message queue to be emptied of Msgs. |
| is_up/1 | is_up(Proc) is true iff Proc is running. |
| kill/1 | kill(Procs) causes Procs to be terminated. |
| kill/2 | |
| pid/1 | pid(Proc) is Proc's pid. |
| recv/1 | recv(Proc) is the next message received from Proc. |
| recv/2 | |
| send/2 | send(Proc, Msg) causes Msg to be sent to Proc. |
| spinlock/1 | Spin until F returns true. |
| with_monitor/2 | with_monitor(Proc, F) causes F to be called while Proc is being monitored. |
flush() -> ok
flush() causes the calling process's message queue to be emptied.
flush(Msg::term()) -> ok
flush() causes the calling process's message queue to be emptied of Msgs.
is_up(Proc::proc()) -> boolean()
is_up(Proc) is true iff Proc is running.
kill(Proc::[proc()]) -> boolean()
kill(Procs) causes Procs to be terminated.
kill(Proc, Opts) -> any()
pid(Pid::proc()) -> pid() | undefined
pid(Proc) is Proc's pid.
recv(Proc) is the next message received from Proc.
recv(Proc, Timeout) -> any()
send(Proc, Msg) causes Msg to be sent to Proc.
spinlock(F::fun(() -> boolean())) -> true | no_return()
Spin until F returns true.
with_monitor(Proc, F) causes F to be called while Proc is being monitored.
Generated by EDoc, Mar 14 2025, 16:51:43.