From 15142093adf7637ee3679a8208047b7a713d5682 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Tue, 25 Oct 2011 20:59:27 +0100 Subject: [PATCH] minor: add "threads show" as synonym for "show threads" for consistency --- OpenSim/Framework/Servers/BaseOpenSimServer.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs index b242e1c01a..3d2008050b 100644 --- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs +++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs @@ -196,6 +196,11 @@ namespace OpenSim.Framework.Servers m_console.Commands.AddCommand("base", false, "threads abort", "threads abort ", "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())); } }