* Correct build break from last commit - how on earth did it compile last time? Bizarre
parent
e1e2622e92
commit
41232ee921
|
@ -28,12 +28,17 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Reflection;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using log4net;
|
||||||
|
|
||||||
namespace OpenSim.Framework
|
namespace OpenSim.Framework
|
||||||
{
|
{
|
||||||
public static class ThreadTracker
|
public static class ThreadTracker
|
||||||
{
|
{
|
||||||
|
private static readonly ILog m_log
|
||||||
|
= LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
private static readonly long ThreadTimeout = 30 * 10000000;
|
private static readonly long ThreadTimeout = 30 * 10000000;
|
||||||
public static List<ThreadTrackerItem> m_Threads;
|
public static List<ThreadTrackerItem> m_Threads;
|
||||||
public static Thread ThreadTrackerThread;
|
public static Thread ThreadTrackerThread;
|
||||||
|
|
Loading…
Reference in New Issue