mirror of
https://github.com/correl/rebar.git
synced 2025-04-04 17:00:16 -09:00
Fix R13 compatibility (auto imported monitor/2)
This commit is contained in:
parent
6254b341d6
commit
6f76d14499
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ reconstruct_app_env_vars([]) ->
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
wait_until_dead(Pid) when is_pid(Pid) ->
|
wait_until_dead(Pid) when is_pid(Pid) ->
|
||||||
Ref = monitor(process, Pid),
|
Ref = erlang:monitor(process, Pid),
|
||||||
receive
|
receive
|
||||||
{'DOWN', Ref, process, _Obj, Info} ->
|
{'DOWN', Ref, process, _Obj, Info} ->
|
||||||
Info
|
Info
|
||||||
|
|
Loading…
Add table
Reference in a new issue