minor: add "threads show" as synonym for "show threads" for consistency

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-10-25 20:59:27 +01:00
parent f050f0fc0b
commit 15142093ad
1 changed files with 5 additions and 0 deletions

View File

@ -196,6 +196,11 @@ namespace OpenSim.Framework.Servers
m_console.Commands.AddCommand("base", false, "threads abort",
"threads abort <thread-id>",
"Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort);
m_console.Commands.AddCommand("base", false, "threads show",
"threads show",
"Show thread status. Synonym for \"show threads\"",
(string module, string[] args) => Notice(GetThreadsReport()));
}
}