aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-03-16 01:31:53 +0000
committerJustin Clark-Casey (justincc)2012-03-19 21:31:53 +0000
commita74408d1d280097c17e5ec9b4417df4e54586a4c (patch)
treeb70871eda155d5a361b69dd48d740ccb8129438b /OpenSim/Region/Framework
parentFix owner name display in "Top Colliders" and "Top Script" region reports. (diff)
downloadopensim-SC_OLD-a74408d1d280097c17e5ec9b4417df4e54586a4c.zip
opensim-SC_OLD-a74408d1d280097c17e5ec9b4417df4e54586a4c.tar.gz
opensim-SC_OLD-a74408d1d280097c17e5ec9b4417df4e54586a4c.tar.bz2
opensim-SC_OLD-a74408d1d280097c17e5ec9b4417df4e54586a4c.tar.xz
Aggregate script execution times by linksets rather than individual prims.
This is for the top scripts report.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModule.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
index 9fb4a25..9cab2e1 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
@@ -79,7 +79,10 @@ namespace OpenSim.Region.Framework.Interfaces
79 /// <summary> 79 /// <summary>
80 /// Get the execution times of all scripts in each object. 80 /// Get the execution times of all scripts in each object.
81 /// </summary> 81 /// </summary>
82 /// <returns>A dictionary where the key is a local object ID and the value is an execution time in milliseconds.</returns> 82 /// <returns>
83 /// A dictionary where the key is the root object ID of a linkset
84 /// and the value is a representative execution time in milliseconds of all scripts in that linkset.
85 /// </returns>
83 Dictionary<uint, float> GetObjectScriptsExecutionTimes(); 86 Dictionary<uint, float> GetObjectScriptsExecutionTimes();
84 } 87 }
85} \ No newline at end of file 88} \ No newline at end of file