aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueManager.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-3/+0
| | | | (this took a while to run).
* Removed some script engine noise from consoleTedd Hansen2008-04-201-1/+1
|
* Formatting cleanup.Jeff Ames2008-03-181-27/+25
|
* * Removed a bunch of compiler warnings.Adam Frisby2008-03-031-1/+1
|
* Bugfixes - Scripting works againTedd Hansen2008-02-221-0/+1
|
* Bugfixes - wasn't counting threads right++Tedd Hansen2008-02-221-3/+2
|
* Execution threads are now shared between regions too. Default thread count ↵Tedd Hansen2008-02-221-46/+18
| | | | | | | regardless of number of regions is now 3. This will save you around 33 threads for a normal 3x3 region server. But, this is totally completely untested. So it probably won't work for another patch or five.
* From this commit and a few hours into the future ScriptEngine will be unstable:Tedd Hansen2008-02-221-9/+9
| | | | | | | | * Speeding up ScriptEngine shutdown * Sharing threads so that minimum total thread count for any amount of regions will be 2. (1 maintenance, 1 script execution) You can choose more script exec threads if you want of course. In this commit: Sharing maintenance thread between all regions.
* Fixes to ScriptEngine thread cleanup on destructorTedd Hansen2008-02-211-9/+9
|
* ScriptEngine changes in locking. Another step in direction of shared threads.Tedd Hansen2008-02-211-17/+15
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-051-13/+10
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Temporarily disabled shared threads because of a bug. Script were only ↵Tedd Hansen2008-02-031-1/+2
| | | | | | | working on 1 region. :) Using default warning level on C#/VB compile
* Added load/unload queue size limitTedd Hansen2008-02-021-0/+10
| | | | | | | Added option to share script load/unload thread between regions Added event execution queue size limit + some bugfixes from all the changes
* Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2008-02-021-16/+20
| | | | | | | OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
* Forgot to create an object before use. Now why can't .Net just do that ↵Tedd Hansen2008-02-021-7/+10
| | | | itself? :)
* SCRIPTING STILL BROKENTedd Hansen2008-02-011-9/+33
| | | | | | | | | | | Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
* SCRIPT SUPPORT IS STILL BROKEN.Tedd Hansen2008-02-011-96/+146
| | | | | | | | | | | | | | Bugfix: Scripts exceeding max and set to be killed were not killed, only removed. Added ability to re-read configuration while OpenSim is running All regions now sharing one MaintenanceThread New MaintenanceThread: - checks for script execution timeout - re-reads config - starts/stops threads if thread active count becomes too high/low compared to config Speed increase on event execution: - Reuse of try{}catch{} blocks - Time calculation on event execution
* Added config options:Tedd Hansen2008-02-011-1/+4
| | | | | | ScriptThreadPriority to set script thread priority DeactivateScriptOnTimeout to remove script if it is executing too long
* Removed "Loading inventory for Primitive" message.Tedd Hansen2008-02-011-1/+1
| | | | | Fixed small bug in thread counter.
* ExperimentalTedd Hansen2008-02-011-7/+45
| | | | | | Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
* Highly experimentalTedd Hansen2008-02-011-149/+99
| | | | | A separate thread is used to enforce max function (event) execution time for scripts.
* * Potential fix to the 'can't run a script anymore bug'Teravus Ovares2008-01-191-6/+7
|
* Added data structure to be passed through event execution queue so that ↵Tedd Hansen2008-01-171-7/+29
| | | | events can use llDetect*-commands to find information about event.
* * Mother of all commits:Adam Frisby2008-01-151-1/+1
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* Set eolTedd Hansen2008-01-121-363/+363
|
* Added license to new filesTedd Hansen2008-01-121-2/+3
|
* Major reorganizing of DotNetEngine. Moved common script engine parts to ↵Tedd Hansen2008-01-121-0/+363
ScriptEngine.Common, only .Net-specific code in DotNetEngine. AppDomains, event handling, event execution queue and multithreading, script load/unload queue, etc has been moved to ScriptEngine.Common. Loads of things has been put into interfaces instead of the specific class. We are now one step closer to ScriptServer, and its very easy to implement new script languages. Just a few lines required to make them a OpenSim script module with all its glory.