aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-22Fix for error message during startup (shared thread started processing ↵Tedd Hansen2-1/+4
region queue before queue objects were fully operational)
2008-02-22Trying to fix SVN update error: 2/2Tedd Hansen2-0/+164
2008-02-22Trying to fix SVN update error: 1/2Tedd Hansen2-164/+0
2008-02-22Removed LaunchSLClient from Prebuild - it can be added to solution on ↵Tedd Hansen2-0/+164
manually by whoever is working on it. :)
2008-02-22* Improve alignment of packet queue stats headignsJustin Clarke Casey2-5/+7
* Correct asset cache stats table heading * Correct spelling mistake in AssetCache (thanks ChrisD!)
2008-02-22* Winnow the debug and info messages associated with stat fetchingJustin Clarke Casey3-14/+29
* As such, only a request for a non cached asset, the response and failures show up now. * I know lbsa71 only put these in not long ago, so if they are really still required, I think we should think whether we can move the default log4net level off 'Debug'
2008-02-22ScriptEngine works again (startup-nully-error gone)Tedd Hansen4-19/+18
2008-02-22One more: Async LSL command thread is also shared now.Tedd Hansen4-248/+275
2008-02-22* Converted the last of the events to the private delegate instance method ↵Teravus Ovares5-62/+116
to avoid race conditions.
2008-02-22* Downgrade texture exception to a warning.Justin Clarke Casey1-4/+5
2008-02-22Bugfixes - Scripting works againTedd Hansen2-2/+17
2008-02-22* Oops! Add missing interfaceJustin Clarke Casey1-0/+44
2008-02-22* Implement packet queue statisticsJustin Clarke Casey3-10/+124
* This will show the packets waiting in each queue for each client logged into a region server * These are displayed using 'show stats' on the region command line * This is in pursuit of a memory leak. * This will require a prebuild
2008-02-22Some misplaced code made scripts never start :)Tedd Hansen1-14/+13
2008-02-22Better timing of MaintenanceThread's tasks (uses less CPU)Tedd Hansen1-20/+39
Updated OpenSim.ini.example
2008-02-22* Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares7-19/+40
instances to prevent event race conditions
2008-02-22* Moved the EventManager over to delegate instances to prevent race conditions.Teravus Ovares1-49/+104
2008-02-22fixed it so that the different types of trees now work (show up in the ↵MW1-1/+5
clients), problem is that we don't seem to be persisting PrimitiveBaseShape.State in the datastore, so after restart of server, they all turn back into pine trees.
2008-02-22Bugfixes - wasn't counting threads right++Tedd Hansen3-17/+17
2008-02-22Minor annoying Exception-bug fixedTedd Hansen2-2/+3
2008-02-22Execution threads are now shared between regions too. Default thread count ↵Tedd Hansen3-242/+229
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.
2008-02-22Maintenance thread in charge of loading/unloading of scripts. 1 thread less ↵Tedd Hansen2-17/+28
per region. Total so far: 2 threads less per region Note: Currently causes delay in load/unload of scripts
2008-02-22Now last commit will compile too... The features just keep on coming!Tedd Hansen3-6/+12
2008-02-22From this commit and a few hours into the future ScriptEngine will be unstable:Tedd Hansen5-79/+87
* 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.
2008-02-22* Relative large ClientView refactoring of packet Events into .Net ↵Teravus Ovares1-256/+686
recommended format.
2008-02-21Fixes to ScriptEngine thread cleanup on destructorTedd Hansen4-17/+14
2008-02-21* Fixed an issue where the client thread was aborted before the UDP server ↵Teravus Ovares1-4/+11
sends a message back to ClientView to close it a second time. (yes we call close twice because there are times when the client closes with a logout and disconnects immediately which causes the UDP server to send a close request to the client thread) * This update might make things better, it might expose another issue.
2008-02-21Update svn properties.Jeff Ames1-106/+106
2008-02-21* A few additional null checks in the Physics Scene and PhysicsActor so we ↵Teravus Ovares2-11/+6
don't try to enumerate dead null ODECharacter objects when things get *really* slow.
2008-02-21ScriptEngine changes in locking. Another step in direction of shared threads.Tedd Hansen2-24/+22
2008-02-21"threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen16-7/+149
compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
2008-02-21Remove a couple compiler warnings.Jeff Ames2-5/+5
2008-02-20* Properly guard against the possibility that CopyInventoryItem doesn't get ↵Justin Clarke Casey1-5/+16
an asset back from the cache
2008-02-20* Eliminate AssetCache.CopyAsset()Justin Clarke Casey2-58/+30
* Resolve a bad logic bug in AssetCache.GetAsset() * This may make some asset related things work better (possibly getting main map images will now be improved).
2008-02-20Treads command lists threads, but not thread name (yet)Tedd Hansen1-7/+9
2008-02-20* Only count download requests for assets which are not already waiting for ↵Justin Clarke Casey5-20/+22
data from the asset server * This should stop the constant increase in the download requests statistics * If you see stat numbers for download requests which are far from what you'd expect, please report
2008-02-20div+Tedd Hansen2-1/+14
threads console command will list all threads. This + yesterdays naming threads patch will give a good overview of what threads we have running.
2008-02-20* Found the land bug, yayTeravus Ovares2-5/+17
2008-02-20* Properly guard removal of asset request lists on AssetCache.AssetNotFound ↵Justin Clarke Casey2-14/+16
(my own bug)
2008-02-20* Remove unused texture dictionaries from AssetCacheJustin Clarke Casey2-48/+73
* Add documentation to AssetCache
2008-02-20Minor cleanup.Jeff Ames206-445/+345
2008-02-20Report command string on ConsoleBase.RunCommand exceptionJustin Clarke Casey2-3/+4
2008-02-20* Fixed a long standing race condition in physics events. Could this be ↵Teravus Ovares1-3/+3
the source of the null on multicast_void: error?
2008-02-20llSetTimerEvent updated to use ticks instead of DateTime for internal timing.Tedd Hansen3-24/+41
2008-02-20* Report 'asset not found' situations back to UserTextureDownloadServiceJustin Clarke Casey6-33/+91
* This fixes some of the 'runaway downloads' problem but not all of it * Also fix up logging messages so texture requests are reported as such rather than as assets
2008-02-20llSetTimerEvent was setting seconds as milliseconds causing major problems ↵Tedd Hansen2-2/+2
in timed scripts...
2008-02-20* re-enabled AssetNotFound codelbsa712-92/+96
* turned script asset fetching asynchronous
2008-02-20Fixed big bug in AgentAssetTransactions, now don't seem to be getting any ↵MW1-4/+4
AbortXfer packets. And the "saving data" message in the client on logout seems to have gone. (So that message was all my fault.)
2008-02-20some changes to the initialising of AgentAssetTransactionModule to see if ↵MW1-9/+23
they help with the xfer/grey avatar problems.
2008-02-20* just added a readonly and a commentlbsa712-2/+2