blob: c54b636aa6bd3115bea14006174c808c16123bea (
plain) (
tree)
|
|
-module(yes_6).
-compile(export_all).
?MODULE() ->
ok.
f(Pid, Msg) ->
Ref = erlang:monitor(process, Pid),
Pid ! Msg,
receive
{ok,Ref,Reply} ->
{ok,Reply};
{error,Ref,Reply} ->
{error,Reply}
end.
|