aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 51f6c5e..726d8e2 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1509,7 +1509,7 @@ namespace OpenSim.Region.Framework.Scenes
1509 { 1509 {
1510 tmpMS = Util.EnvironmentTickCount(); 1510 tmpMS = Util.EnvironmentTickCount();
1511 m_cleaningTemps = true; 1511 m_cleaningTemps = true;
1512 Util.FireAndForget(delegate { CleanTempObjects(); m_cleaningTemps = false; }); 1512 Util.RunThreadNoTimeout(delegate { CleanTempObjects(); m_cleaningTemps = false; }, "CleanTempObjects", null);
1513 tempOnRezMS = Util.EnvironmentTickCountSubtract(tmpMS); 1513 tempOnRezMS = Util.EnvironmentTickCountSubtract(tmpMS);
1514 } 1514 }
1515 1515
@@ -1682,7 +1682,7 @@ namespace OpenSim.Region.Framework.Scenes
1682 if (!m_backingup) 1682 if (!m_backingup)
1683 { 1683 {
1684 m_backingup = true; 1684 m_backingup = true;
1685 Util.FireAndForget(BackupWaitCallback); 1685 Util.RunThreadNoTimeout(BackupWaitCallback, "BackupWaitCallback", null);
1686 } 1686 }
1687 } 1687 }
1688 1688
@@ -1695,7 +1695,7 @@ namespace OpenSim.Region.Framework.Scenes
1695 } 1695 }
1696 1696
1697 /// <summary> 1697 /// <summary>
1698 /// Wrapper for Backup() that can be called with Util.FireAndForget() 1698 /// Wrapper for Backup() that can be called with Util.RunThreadNoTimeout()
1699 /// </summary> 1699 /// </summary>
1700 private void BackupWaitCallback(object o) 1700 private void BackupWaitCallback(object o)
1701 { 1701 {