diff options
author | Rider Linden <rider@lindenlab.com> | 2015-12-04 14:27:22 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-12-04 14:27:22 -0800 |
commit | 2763bbd97519d35a43aedf279751e7b1045581dc (patch) | |
tree | 270e75d1a006b06e0987838ea1f6f0a5979698ef /indra/newview/lleventpoll.cpp | |
parent | 5d897443a9e50843ac562da8972bfe2f9f8f1129 (diff) |
Initial changes for Vivox/Azumarill merge. Lots of temporary code and conditional compile switches. Begin switch from statemachine to coroutine.
Diffstat (limited to 'indra/newview/lleventpoll.cpp')
-rwxr-xr-x | indra/newview/lleventpoll.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/lleventpoll.cpp b/indra/newview/lleventpoll.cpp index 72e159bcec..7178042b32 100755 --- a/indra/newview/lleventpoll.cpp +++ b/indra/newview/lleventpoll.cpp @@ -197,7 +197,6 @@ namespace Details // request. Calculate a timeout and wait for it to expire(sleep) // before trying again. The sleep time is increased by 5 seconds // for each consecutive error. - LLEventTimeout timeout; ++errorCount; F32 waitToRetry = EVENT_POLL_ERROR_RETRY_SECONDS @@ -206,8 +205,7 @@ namespace Details LL_WARNS("LLEventPollImpl") << "<" << counter << "> Retrying in " << waitToRetry << " seconds, error count is now " << errorCount << LL_ENDL; - timeout.eventAfter(waitToRetry, LLSD()); - llcoro::suspendUntilEventOn(timeout); + llcoro::suspendUntilTimeout(waitToRetry); if (mDone) break; |