OpenSim.OpenSim.WatchdogTimeoutHandler C# (CSharp) Method

WatchdogTimeoutHandler() private method

private WatchdogTimeoutHandler ( System thread, int lastTick ) : void
thread System
lastTick int
return void
        private void WatchdogTimeoutHandler(System.Threading.Thread thread, int lastTick)
        {
            int now = Environment.TickCount & Int32.MaxValue;

            m_log.ErrorFormat("[WATCHDOG]: Timeout detected for thread \"{0}\". ThreadState={1}. Last tick was {2}ms ago",
                thread.Name, thread.ThreadState, now - lastTick);
        }