mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
remove mono compiler warnings from PollServiceRequestManager
This commit is contained in:
@@ -51,10 +51,8 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||
|
||||
private uint m_WorkerThreadCount = 0;
|
||||
private Thread[] m_workerThreads;
|
||||
private Thread m_longPollThread;
|
||||
|
||||
private bool m_running = true;
|
||||
private int slowCount = 0;
|
||||
|
||||
private SmartThreadPool m_threadPool = new SmartThreadPool(20000, 12, 2);
|
||||
|
||||
@@ -83,7 +81,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||
int.MaxValue);
|
||||
}
|
||||
|
||||
m_longPollThread = Watchdog.StartThread(
|
||||
Watchdog.StartThread(
|
||||
this.CheckLongPollThreads,
|
||||
string.Format("LongPollServiceWatcherThread:{0}", m_server.Port),
|
||||
ThreadPriority.Normal,
|
||||
@@ -136,7 +134,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||
Thread.Sleep(500);
|
||||
Watchdog.UpdateThread();
|
||||
|
||||
List<PollServiceHttpRequest> not_ready = new List<PollServiceHttpRequest>();
|
||||
// List<PollServiceHttpRequest> not_ready = new List<PollServiceHttpRequest>();
|
||||
lock (m_longPollRequests)
|
||||
{
|
||||
if (m_longPollRequests.Count > 0 && m_running)
|
||||
|
||||
Reference in New Issue
Block a user