aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-07 23:24:13 +0000
committerJustin Clark-Casey (justincc)2011-11-07 23:24:13 +0000
commit7e488cd6352acfb50a4c9132e47154ad9545d188 (patch)
tree8f87dd3d00dbf7c8cfd6f8f55ebe337000600265
parentCorrect test failure in sit position check of TestSitAndStandWithNoTarget() (diff)
downloadopensim-SC_OLD-7e488cd6352acfb50a4c9132e47154ad9545d188.zip
opensim-SC_OLD-7e488cd6352acfb50a4c9132e47154ad9545d188.tar.gz
opensim-SC_OLD-7e488cd6352acfb50a4c9132e47154ad9545d188.tar.bz2
opensim-SC_OLD-7e488cd6352acfb50a4c9132e47154ad9545d188.tar.xz
Remove unused avariable in PollServiceRequestManager
-rw-r--r--OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs14
1 files changed, 6 insertions, 8 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
index d9965b6..2206feb 100644
--- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
+++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
@@ -44,7 +44,6 @@ namespace OpenSim.Framework.Servers.HttpServer
44 private uint m_WorkerThreadCount = 0; 44 private uint m_WorkerThreadCount = 0;
45 private Thread[] m_workerThreads; 45 private Thread[] m_workerThreads;
46 private PollServiceWorkerThread[] m_PollServiceWorkerThreads; 46 private PollServiceWorkerThread[] m_PollServiceWorkerThreads;
47 private Thread m_watcherThread;
48 private bool m_running = true; 47 private bool m_running = true;
49 48
50 public PollServiceRequestManager(BaseHttpServer pSrv, uint pWorkerThreadCount, int pTimeout) 49 public PollServiceRequestManager(BaseHttpServer pSrv, uint pWorkerThreadCount, int pTimeout)
@@ -69,13 +68,12 @@ namespace OpenSim.Framework.Servers.HttpServer
69 int.MaxValue); 68 int.MaxValue);
70 } 69 }
71 70
72 m_watcherThread 71 Watchdog.StartThread(
73 = Watchdog.StartThread( 72 this.ThreadStart,
74 this.ThreadStart, 73 "PollServiceWatcherThread",
75 "PollServiceWatcherThread", 74 ThreadPriority.Normal,
76 ThreadPriority.Normal, 75 false,
77 false, 76 1000 * 60 * 10);
78 1000 * 60 * 10);
79 } 77 }
80 78
81 internal void ReQueueEvent(PollServiceHttpRequest req) 79 internal void ReQueueEvent(PollServiceHttpRequest req)