Remove unused avariable in PollServiceRequestManager
parent
39b967e214
commit
7e488cd635
|
@ -44,7 +44,6 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
private uint m_WorkerThreadCount = 0;
|
private uint m_WorkerThreadCount = 0;
|
||||||
private Thread[] m_workerThreads;
|
private Thread[] m_workerThreads;
|
||||||
private PollServiceWorkerThread[] m_PollServiceWorkerThreads;
|
private PollServiceWorkerThread[] m_PollServiceWorkerThreads;
|
||||||
private Thread m_watcherThread;
|
|
||||||
private bool m_running = true;
|
private bool m_running = true;
|
||||||
|
|
||||||
public PollServiceRequestManager(BaseHttpServer pSrv, uint pWorkerThreadCount, int pTimeout)
|
public PollServiceRequestManager(BaseHttpServer pSrv, uint pWorkerThreadCount, int pTimeout)
|
||||||
|
@ -69,13 +68,12 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
int.MaxValue);
|
int.MaxValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_watcherThread
|
Watchdog.StartThread(
|
||||||
= Watchdog.StartThread(
|
this.ThreadStart,
|
||||||
this.ThreadStart,
|
"PollServiceWatcherThread",
|
||||||
"PollServiceWatcherThread",
|
ThreadPriority.Normal,
|
||||||
ThreadPriority.Normal,
|
false,
|
||||||
false,
|
1000 * 60 * 10);
|
||||||
1000 * 60 * 10);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void ReQueueEvent(PollServiceHttpRequest req)
|
internal void ReQueueEvent(PollServiceHttpRequest req)
|
||||||
|
|
Loading…
Reference in New Issue