aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Types/UpdateQueue.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-05-161-2/+2
|
* * Rolled back a few changes.Adam Frisby2008-05-011-53/+50
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-011-50/+53
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-6/+5
| | | | (this took a while to run).
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* attempt to try to fix mantis issue # 613, which seems to be a threading ↵MW2008-03-141-8/+8
| | | | issue. Queue is only threadsafe if its a public static member, which in this case it wasn't. And we were locking it during both enqueues and dequeues. So have added those locks to a syncObject. But it still needs testing on a high load region, as that seems to be when the exception happened.
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-041-2/+48
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* * Cleanup of some memory consuming items on ScenePresence.Close().Teravus Ovares2008-02-201-0/+11
| | | | | | * Untangled a tangly shutdown loop for the ScenePresence. * Suggested to the Garbage Collector that this may be a good time to >.>, <.< *gasp* collect the memory.
* * Optimized usingslbsa712007-10-301-1/+1
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* get rid of all the ^M line endingsSean Dague2007-10-191-79/+79
|
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-1/+29
|
* Some changes to the sending of updates of SceneObjects to clients, that I ↵MW2007-10-111-50/+50
| | | | did a few weeks ago but never committed (and never completely finished what I had planned).
* getting all our line endings consistant againSean Dague2007-10-051-5/+5
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-9/+6
| | | | | * 'remove redundant this qualifier' ftw
* fixing me some line endingsSean Dague2007-09-171-54/+54
|
* hooked up sdague new sqlite asset database provider to the old asset system. ↵MW2007-09-101-0/+33
| | | | | | | | So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
* Converted the LSL scripting engine into a IRegionModule, so now all ↵MW2007-09-081-0/+21
"modules" share a common base interface and are loaded from the single loader. (It seems to work fine, but I have left the old scriptengine loader, incase we have to change back). Removed the reference to OpenJpeg in the DynamicTextureModule, to see if that was causing the build problem someone is having. Added a Temporary fix for the "existing connection was forcibly closed by the remote host" exception on windows when a user logs out of a multiregion instance. Some early work to prepare for improving the way clients are updated (about prims etc).