Add copyright header. Formatting cleanup.

This commit is contained in:
Jeff Ames
2009-08-01 05:11:47 +00:00
parent ff35a3378e
commit 4ce5c894cf
4 changed files with 31 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ namespace OpenSim.Framework.Servers.HttpServer
m_PollServiceWorkerThreads[i] = new PollServiceWorkerThread(m_server, pTimeout);
m_PollServiceWorkerThreads[i].ReQueue += ReQueueEvent;
m_workerThreads[i] = new Thread( m_PollServiceWorkerThreads[i].ThreadStart);
m_workerThreads[i] = new Thread(m_PollServiceWorkerThreads[i].ThreadStart);
m_workerThreads[i].Name = String.Format("PollServiceWorkerThread{0}",i);
//Can't add to thread Tracker here Referencing OpenSim.Framework creates circular reference
m_workerThreads[i].Start();