aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
diff options
context:
space:
mode:
authorDiva Canto2012-03-15 20:22:59 -0700
committerDiva Canto2012-03-15 20:22:59 -0700
commit05bb2e42757078737944d2f3179b0b964ae460c8 (patch)
tree188e53afb08a96f07996e7d4c0e2dd2db3518096 /OpenSim/Region/Framework/Interfaces/IScriptModule.cs
parentMore on map search: send extra messages to the user regarding the region bein... (diff)
parentAdd process working memory to "show stats" memory statistics. (diff)
downloadopensim-SC_OLD-05bb2e42757078737944d2f3179b0b964ae460c8.zip
opensim-SC_OLD-05bb2e42757078737944d2f3179b0b964ae460c8.tar.gz
opensim-SC_OLD-05bb2e42757078737944d2f3179b0b964ae460c8.tar.bz2
opensim-SC_OLD-05bb2e42757078737944d2f3179b0b964ae460c8.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScriptModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModule.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
index 18c45dd..9cab2e1 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
@@ -27,6 +27,7 @@
27 27
28using System; 28using System;
29using System.Collections; 29using System.Collections;
30using System.Collections.Generic;
30using OpenMetaverse; 31using OpenMetaverse;
31 32
32namespace OpenSim.Region.Framework.Interfaces 33namespace OpenSim.Region.Framework.Interfaces
@@ -74,5 +75,14 @@ namespace OpenSim.Region.Framework.Interfaces
74 /// Starts the processing threads. 75 /// Starts the processing threads.
75 /// </summary> 76 /// </summary>
76 void StartProcessing(); 77 void StartProcessing();
78
79 /// <summary>
80 /// Get the execution times of all scripts in each object.
81 /// </summary>
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>
86 Dictionary<uint, float> GetObjectScriptsExecutionTimes();
77 } 87 }
78} 88} \ No newline at end of file