Treads command lists threads, but not thread name (yet)
parent
7d7ad4dff2
commit
5f7a02fce9
|
@ -754,15 +754,17 @@ namespace OpenSim
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "threads":
|
case "threads":
|
||||||
if (cmdparams.Length > 0)
|
m_console.Notice("THREAD", Process.GetCurrentProcess().Threads.Count + " threads running:");
|
||||||
|
int _tc = 0;
|
||||||
|
|
||||||
|
foreach (ProcessThread pt in Process.GetCurrentProcess().Threads)
|
||||||
{
|
{
|
||||||
int c = 0;
|
_tc++;
|
||||||
foreach (Thread t in Process.GetCurrentProcess().Threads)
|
m_console.Notice("THREAD", _tc + ": ID: " + pt.Id + ", Started: " + pt.StartTime.ToString() + ", CPU time: " + pt.TotalProcessorTime + ", Pri: " + pt.BasePriority.ToString() + ", State: " + pt.ThreadState.ToString());
|
||||||
{
|
|
||||||
c++;
|
|
||||||
m_console.Notice("THREAD", "Thread " + c + ": " + t.Name + " (" + t.ToString() + ")");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case "save-xml":
|
case "save-xml":
|
||||||
if (cmdparams.Length > 0)
|
if (cmdparams.Length > 0)
|
||||||
|
|
Loading…
Reference in New Issue