Revert "Small changes to threading to send thread names to unmanaged threads. Needs Mono 3.6+ to see thread names in utilities like top -H . Some formatting of the thread name to fin in the 16 byte limit on Linux. Please test on Windows to see if the work has any adverse effects."

This reverts commit af286d5fcb.
Issue with Jenkins builds
This commit is contained in:
BlueWall
2014-09-17 18:11:41 -04:00
parent af286d5fcb
commit 376fab1402
5 changed files with 11 additions and 14 deletions

View File

@@ -150,9 +150,9 @@ namespace OpenSim.Framework.Servers.HttpServer
public void Start()
{
_engine = new Thread(new ThreadStart(Engine));
_engine.Name = _engineId;
_engine.IsBackground = true;
_engine.Start();
_engine.Name = string.Format ("Engine:{0}",_engineId);
ThreadTracker.Add(_engine);