Add comments on pids not to kill

This commit is contained in:
Scott Lystig Fritchie 2011-08-23 17:32:07 -05:00
parent b674ea19a4
commit 0627075dd6

View file

@ -495,6 +495,10 @@ reset_after_eunit({OldProcesses, WasAlive, OldAppEnvs, _OldACs}) ->
ok. ok.
kill_extras(Pids) -> kill_extras(Pids) ->
%% Killing any of the procs below will either:
%% 1. Interfere with stuff that we don't want interfered with, or
%% 2. May/will force the 'kernel' app to shutdown, which *will*
%% interfere with rebar's ability To Do Useful Stuff(tm).
KeepProcs = [cover_server, eunit_server, inet_gethost_native_sup, KeepProcs = [cover_server, eunit_server, inet_gethost_native_sup,
inet_gethost_native, timer_server], inet_gethost_native, timer_server],
Killed = [begin Killed = [begin