mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Label all threadpool calls being made in core OpenSimulator. This is to add problem diagnosis.
"show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
This commit is contained in:
@@ -294,7 +294,8 @@ namespace OpenSim.Region.OptionalModules.ViewerSupport
|
||||
for (int i = 0 ; i < selection.Count ; i++)
|
||||
sel.Add(selection[i].AsUInteger());
|
||||
|
||||
Util.FireAndForget(x => { m_module.HandleMenuSelection(action, m_agentID, sel); });
|
||||
Util.FireAndForget(
|
||||
x => { m_module.HandleMenuSelection(action, m_agentID, sel); }, null, "DynamicMenuModule.HandleMenuSelection");
|
||||
|
||||
Encoding encoding = Encoding.UTF8;
|
||||
return encoding.GetBytes(OSDParser.SerializeLLSDXmlString(new OSD()));
|
||||
|
||||
Reference in New Issue
Block a user