Restart the event queue worker threads that I accidentally disabled earlier today in 8a0a78c.

Also adds these to the watchdogs with very large timeouts (should really be infinite)
remove-scene-viewer
Justin Clark-Casey (justincc) 2011-10-25 23:26:21 +01:00
parent 182908d216
commit c275c22928
2 changed files with 11 additions and 9 deletions

View File

@ -60,12 +60,13 @@ namespace OpenSim.Framework.Servers.HttpServer
m_PollServiceWorkerThreads[i] = new PollServiceWorkerThread(m_server, pTimeout); m_PollServiceWorkerThreads[i] = new PollServiceWorkerThread(m_server, pTimeout);
m_PollServiceWorkerThreads[i].ReQueue += ReQueueEvent; m_PollServiceWorkerThreads[i].ReQueue += ReQueueEvent;
// m_workerThreads[i] m_workerThreads[i]
// = Watchdog.StartThread( = Watchdog.StartThread(
// m_PollServiceWorkerThreads[i].ThreadStart, m_PollServiceWorkerThreads[i].ThreadStart,
// String.Format("PollServiceWorkerThread{0}", i), String.Format("PollServiceWorkerThread{0}", i),
// ThreadPriority.Normal, ThreadPriority.Normal,
// false); false,
int.MaxValue);
} }
m_watcherThread m_watcherThread
@ -73,7 +74,8 @@ namespace OpenSim.Framework.Servers.HttpServer
this.ThreadStart, this.ThreadStart,
"PollServiceWatcherThread", "PollServiceWatcherThread",
ThreadPriority.Normal, ThreadPriority.Normal,
false); false,
1000 * 60 * 10);
} }
internal void ReQueueEvent(PollServiceHttpRequest req) internal void ReQueueEvent(PollServiceHttpRequest req)

View File

@ -51,7 +51,7 @@ namespace OpenSim.Framework
public int LastTick { get; set; } public int LastTick { get; set; }
/// <summary> /// <summary>
/// Number of seconds before we notify that the thread is having a problem. /// Number of milliseconds before we notify that the thread is having a problem.
/// </summary> /// </summary>
public int Timeout { get; set; } public int Timeout { get; set; }
@ -116,7 +116,7 @@ namespace OpenSim.Framework
/// <param name="isBackground">True to run this thread as a background /// <param name="isBackground">True to run this thread as a background
/// thread, otherwise false</param> /// thread, otherwise false</param>
/// <param name="timeout"> /// <param name="timeout">
/// Number of seconds to wait until we issue a warning about timeout. /// Number of milliseconds to wait until we issue a warning about timeout.
/// </para> /// </para>
/// <returns>The newly created Thread object</returns> /// <returns>The newly created Thread object</returns>
public static Thread StartThread( public static Thread StartThread(