aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-25 20:59:27 +0100
committerJustin Clark-Casey (justincc)2011-10-25 20:59:27 +0100
commita4d4f548489e42c98ac3045b032c046fe461aa5b (patch)
treeae901bddde7a1492c41bf805d6816d23f19816e1 /OpenSim/Framework/Servers/BaseOpenSimServer.cs
parentAdd "threads abort <thread-id>" simulator console command that allows us to a... (diff)
downloadopensim-SC_OLD-a4d4f548489e42c98ac3045b032c046fe461aa5b.zip
opensim-SC_OLD-a4d4f548489e42c98ac3045b032c046fe461aa5b.tar.gz
opensim-SC_OLD-a4d4f548489e42c98ac3045b032c046fe461aa5b.tar.bz2
opensim-SC_OLD-a4d4f548489e42c98ac3045b032c046fe461aa5b.tar.xz
minor: add "threads show" as synonym for "show threads" for consistency
Diffstat (limited to 'OpenSim/Framework/Servers/BaseOpenSimServer.cs')
-rw-r--r--OpenSim/Framework/Servers/BaseOpenSimServer.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
index b242e1c..3d20080 100644
--- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs
+++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
@@ -196,6 +196,11 @@ namespace OpenSim.Framework.Servers
196 m_console.Commands.AddCommand("base", false, "threads abort", 196 m_console.Commands.AddCommand("base", false, "threads abort",
197 "threads abort <thread-id>", 197 "threads abort <thread-id>",
198 "Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort); 198 "Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort);
199
200 m_console.Commands.AddCommand("base", false, "threads show",
201 "threads show",
202 "Show thread status. Synonym for \"show threads\"",
203 (string module, string[] args) => Notice(GetThreadsReport()));
199 } 204 }
200 } 205 }
201 206