diff options
author | Justin Clark-Casey (justincc) | 2012-03-16 01:31:53 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-16 01:31:53 +0000 |
commit | c386b68373d0f4c46811423a2ba9ffbb486a1d9f (patch) | |
tree | aa2071710d83184ebcb7b19073355ab060fc58a1 /OpenSim/Region/Framework/Interfaces/IScriptModule.cs | |
parent | Fix owner name display in "Top Colliders" and "Top Script" region reports. (diff) | |
download | opensim-SC_OLD-c386b68373d0f4c46811423a2ba9ffbb486a1d9f.zip opensim-SC_OLD-c386b68373d0f4c46811423a2ba9ffbb486a1d9f.tar.gz opensim-SC_OLD-c386b68373d0f4c46811423a2ba9ffbb486a1d9f.tar.bz2 opensim-SC_OLD-c386b68373d0f4c46811423a2ba9ffbb486a1d9f.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/Interfaces/IScriptModule.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModule.cs | 5 |
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 |