aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorUbitUmarov2017-05-25 02:01:36 +0100
committerUbitUmarov2017-05-25 02:01:36 +0100
commitb6c23fe91169ed7065280464d20bba658252e278 (patch)
tree744ee7f94303d13c1eb05fc841c6f293f7fb6cbf /OpenSim/Framework
parentmake some threads background ones (diff)
downloadopensim-SC_OLD-b6c23fe91169ed7065280464d20bba658252e278.zip
opensim-SC_OLD-b6c23fe91169ed7065280464d20bba658252e278.tar.gz
opensim-SC_OLD-b6c23fe91169ed7065280464d20bba658252e278.tar.bz2
opensim-SC_OLD-b6c23fe91169ed7065280464d20bba658252e278.tar.xz
make a few more threads background ones
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
index e1bd564..bd1c040 100644
--- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
+++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
@@ -91,7 +91,7 @@ namespace OpenSim.Framework.Servers.HttpServer
91 PoolWorkerJob, 91 PoolWorkerJob,
92 string.Format("PollServiceWorkerThread {0}:{1}", i, m_server.Port), 92 string.Format("PollServiceWorkerThread {0}:{1}", i, m_server.Port),
93 ThreadPriority.Normal, 93 ThreadPriority.Normal,
94 false, 94 true,
95 false, 95 false,
96 null, 96 null,
97 int.MaxValue); 97 int.MaxValue);
@@ -101,7 +101,7 @@ namespace OpenSim.Framework.Servers.HttpServer
101 this.CheckRetries, 101 this.CheckRetries,
102 string.Format("PollServiceWatcherThread:{0}", m_server.Port), 102 string.Format("PollServiceWatcherThread:{0}", m_server.Port),
103 ThreadPriority.Normal, 103 ThreadPriority.Normal,
104 false, 104 true,
105 true, 105 true,
106 null, 106 null,
107 1000 * 60 * 10); 107 1000 * 60 * 10);