make a few more threads background ones
parent
4286ae43f2
commit
b6c23fe911
|
@ -91,7 +91,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
PoolWorkerJob,
|
PoolWorkerJob,
|
||||||
string.Format("PollServiceWorkerThread {0}:{1}", i, m_server.Port),
|
string.Format("PollServiceWorkerThread {0}:{1}", i, m_server.Port),
|
||||||
ThreadPriority.Normal,
|
ThreadPriority.Normal,
|
||||||
false,
|
true,
|
||||||
false,
|
false,
|
||||||
null,
|
null,
|
||||||
int.MaxValue);
|
int.MaxValue);
|
||||||
|
@ -101,7 +101,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
this.CheckRetries,
|
this.CheckRetries,
|
||||||
string.Format("PollServiceWatcherThread:{0}", m_server.Port),
|
string.Format("PollServiceWatcherThread:{0}", m_server.Port),
|
||||||
ThreadPriority.Normal,
|
ThreadPriority.Normal,
|
||||||
false,
|
true,
|
||||||
true,
|
true,
|
||||||
null,
|
null,
|
||||||
1000 * 60 * 10);
|
1000 * 60 * 10);
|
||||||
|
|
|
@ -207,7 +207,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
m_workerThreads[i] = WorkManager.StartThread(DoInventoryRequests,
|
m_workerThreads[i] = WorkManager.StartThread(DoInventoryRequests,
|
||||||
String.Format("InventoryWorkerThread{0}", i),
|
String.Format("InventoryWorkerThread{0}", i),
|
||||||
ThreadPriority.Normal,
|
ThreadPriority.Normal,
|
||||||
false,
|
true,
|
||||||
true,
|
true,
|
||||||
null,
|
null,
|
||||||
int.MaxValue);
|
int.MaxValue);
|
||||||
|
|
Loading…
Reference in New Issue