* Correct build break from last commit - how on earth did it compile last time? Bizarre

0.6.0-stable
Justin Clarke Casey 2008-11-04 21:42:31 +00:00
parent e1e2622e92
commit 41232ee921
1 changed files with 5 additions and 0 deletions

View File

@ -28,12 +28,17 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
using log4net;
namespace OpenSim.Framework
{
public static class ThreadTracker
{
private static readonly ILog m_log
= LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private static readonly long ThreadTimeout = 30 * 10000000;
public static List<ThreadTrackerItem> m_Threads;
public static Thread ThreadTrackerThread;