diff options
author | Justin Clark-Casey (justincc) | 2013-08-05 23:06:17 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-05 23:06:17 +0100 |
commit | 139dcf1246b933f76bf72d2306f3f70d2ca61479 (patch) | |
tree | fd5cbb730062b95fadeb53f3e7cc00bfd5c9abd9 /OpenSim/Framework/Servers/ServerBase.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-139dcf1246b933f76bf72d2306f3f70d2ca61479.zip opensim-SC_OLD-139dcf1246b933f76bf72d2306f3f70d2ca61479.tar.gz opensim-SC_OLD-139dcf1246b933f76bf72d2306f3f70d2ca61479.tar.bz2 opensim-SC_OLD-139dcf1246b933f76bf72d2306f3f70d2ca61479.tar.xz |
minor: move "threads abort" and "force gc" console commands into debug category - these are not things one needs to do in normal operation
Diffstat (limited to 'OpenSim/Framework/Servers/ServerBase.cs')
-rw-r--r-- | OpenSim/Framework/Servers/ServerBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/ServerBase.cs b/OpenSim/Framework/Servers/ServerBase.cs index 55b6c58..0545bea 100644 --- a/OpenSim/Framework/Servers/ServerBase.cs +++ b/OpenSim/Framework/Servers/ServerBase.cs | |||
@@ -246,7 +246,7 @@ namespace OpenSim.Framework.Servers | |||
246 | "Show thread status", HandleShow); | 246 | "Show thread status", HandleShow); |
247 | 247 | ||
248 | m_console.Commands.AddCommand( | 248 | m_console.Commands.AddCommand( |
249 | "General", false, "threads abort", | 249 | "Debug", false, "threads abort", |
250 | "threads abort <thread-id>", | 250 | "threads abort <thread-id>", |
251 | "Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort); | 251 | "Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort); |
252 | 252 | ||
@@ -263,7 +263,7 @@ namespace OpenSim.Framework.Servers | |||
263 | HandleDebugThreadpoolSet); | 263 | HandleDebugThreadpoolSet); |
264 | 264 | ||
265 | m_console.Commands.AddCommand( | 265 | m_console.Commands.AddCommand( |
266 | "General", false, "force gc", | 266 | "Debug", false, "force gc", |
267 | "force gc", | 267 | "force gc", |
268 | "Manually invoke runtime garbage collection. For debugging purposes", | 268 | "Manually invoke runtime garbage collection. For debugging purposes", |
269 | HandleForceGc); | 269 | HandleForceGc); |