aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorAleric Inglewood2010-09-30 15:24:07 +0200
committerAleric Inglewood2010-09-30 15:24:07 +0200
commit4864536481aec9484a6a0a8f2895954d3fcf1500 (patch)
treef5fc2556b4961976b630d5d22c399c9463770386 /linden
parentRED-575: VWR-13040: LLObjectSelection::valid_root_begin() is really the same ... (diff)
downloadmeta-impy-4864536481aec9484a6a0a8f2895954d3fcf1500.zip
meta-impy-4864536481aec9484a6a0a8f2895954d3fcf1500.tar.gz
meta-impy-4864536481aec9484a6a0a8f2895954d3fcf1500.tar.bz2
meta-impy-4864536481aec9484a6a0a8f2895954d3fcf1500.tar.xz
RED-576: SNOW-415: Viewer prints always "WARNING: cleanup: Quitting with pending background tasks"
See http://redmine.imprudenceviewer.org/issues/576
Diffstat (limited to 'linden')
-rw-r--r--linden/doc/contributions.txt2
-rw-r--r--linden/indra/newview/llappviewer.cpp7
2 files changed, 7 insertions, 2 deletions
diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt
index 71a076d..189bb0c 100644
--- a/linden/doc/contributions.txt
+++ b/linden/doc/contributions.txt
@@ -53,6 +53,7 @@ Aleric Inglewood
53 SNOW-203 53 SNOW-203
54 SNOW-240 54 SNOW-240
55 SNOW-408 55 SNOW-408
56 SNOW-415
56 SNOW-479 57 SNOW-479
57 SNOW-626 58 SNOW-626
58 SNOW-766 59 SNOW-766
@@ -69,6 +70,7 @@ Aleric Inglewood
69 RED-567 70 RED-567
70 RED-573 71 RED-573
71 RED-575 72 RED-575
73 RED-576
72Alissa Sabre 74Alissa Sabre
73 VWR-81 75 VWR-81
74 VWR-83 76 VWR-83
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index 797ec27..e54ae96 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -1457,8 +1457,11 @@ bool LLAppViewer::cleanup()
1457 pending += LLAppViewer::getTextureFetch()->update(1); // unpauses the texture fetch thread 1457 pending += LLAppViewer::getTextureFetch()->update(1); // unpauses the texture fetch thread
1458 pending += LLVFSThread::updateClass(0); 1458 pending += LLVFSThread::updateClass(0);
1459 pending += LLLFSThread::updateClass(0); 1459 pending += LLLFSThread::updateClass(0);
1460 F64 idle_time = idleTimer.getElapsedTimeF64(); 1460 if (pending == 0)
1461 if (!pending || idle_time >= max_idle_time) 1461 {
1462 break;
1463 }
1464 if (idleTimer.getElapsedTimeF64() >= max_idle_time)
1462 { 1465 {
1463 llwarns << "Quitting with pending background tasks." << llendl; 1466 llwarns << "Quitting with pending background tasks." << llendl;
1464 break; 1467 break;