Remove the sleep from async_nif's EAGAIN path because it doesn't seem to have a positive effect.

This commit is contained in:
Gregory Burd 2013-08-19 12:20:36 -04:00
parent 96d43d5d17
commit 2047104cda

View file

@ -22,7 +22,7 @@
%% -------------------------------------------------------------------
-define(ASYNC_NIF_CALL(Fun, Args),
F = fun(F, T) ->
F = fun(F) ->
R = erlang:make_ref(),
case erlang:apply(F, [R|Args]) of
{ok, enqueued} ->
@ -37,11 +37,9 @@
Reply
end;
{error, eagain} ->
SleepyTime = min(30, (T+1)*2),
timer:sleep(SleepyTime),
F(F, SleepyTime);
F(F);
Other ->
Other
end
end,
F(Fun, 0)).
F(Fun)).