aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into careminsterMelanie2012-12-181-1/+7
|\ | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
| * Add stack dump function that takes an alternate printer outter. I've found ↵Robert Adams2012-12-161-1/+7
| | | | | | | | that log4net can be slowish so, if one is generating A LOT of debug output, alternate printers are better
* | Merge branch 'master' into careminsterMelanie2012-12-162-4/+26
|\ \ | |/ | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectPart.cs OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs
| * Merge branch 'master' of /home/opensim/var/repo/opensimBlueWall2012-12-121-4/+24
| |\
| | * Add "debug script log" command to allow setting a numeric debug level on ↵Justin Clark-Casey (justincc)2012-12-121-4/+24
| | | | | | | | | | | | | | | | | | | | | individual IScriptInstances for debugging purposes. Current, state changes and event fires can be logged for individual scripts. See command help for more details.
| * | Hide some console output when initializing addin repositoryBlueWall2012-12-111-0/+2
| |/ | | | | | | We do this in OpenSim.exe to hide output when unmanaged dll are scanned by mono addins. Libomv has hard-coded path to "." for the openjpeg libraries, causing output to the console when they are scanned. We will cover this up for now, then look at getting libomv to look for the libs outside the "." later.
* | Merge branch 'master' into careminsterMelanie2012-12-091-0/+561
|\ \ | |/
| * Format changeBlueWall2012-12-071-1/+1
| | | | | | | | Removed some white space in a line, looking to trigger a build
| * Merge branch 'master' into connector_pluginBlueWall2012-12-074-22/+517
| |\
| * \ Merge branch 'master' into connector_pluginBlueWall2012-11-2547-754/+1721
| |\ \ | | | | | | | | | | | | | | | | Conflicts: OpenSim/Server/Base/ServicesServerBase.cs
| * \ \ Merge branch 'master' into connector_pluginBlueWall2012-10-2011-184/+586
| |\ \ \
| * \ \ \ Merge branch 'master' into connector_pluginBlueWall2012-10-191-0/+53
| |\ \ \ \
| * | | | | Move PluginManagerBlueWall2012-10-191-0/+561
| | | | | | | | | | | | | | | | | | | | | | | | Move PluginManager out to OpenSimFramework for general use
* | | | | | Merge branch 'master' into careminsterMelanie2012-12-074-22/+517
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs OpenSim/Region/Framework/Scenes/Scene.cs
| * | | | | Use a thread abort safe version of OpenMetaverse.DoubleDictionary with the ↵Justin Clark-Casey (justincc)2012-12-071-0/+508
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aim of avoiding OpenSimulator problems due to script thread aborts. When an object is removed, its scripts are stopped and then the thread running them is aborted if stop takes too long. However, it appears that aborting a thread at just the wrong moment when it is obtaining a ReaderWriterLockSlim lock can leave this lock in an inconsistent state. One symptom of this is that mono leaps to 100% cpu and a vm thread dump reveals lots of threads waiting for a ReaderWriterLockSlim lock without any thread actually holding it. This is probably the same problem as encountered originally in commit 12cebb12 This commit looks to plaster this problem by putting lock obtaining methods inside finally blocks which should be uninterruptible by thread aborts.
| * | | | | Remove very probably unused PrimitiveBaseShape(bool) constructor to reduce ↵Justin Clark-Casey (justincc)2012-12-051-12/+6
| | | | | | | | | | | | | | | | | | | | | | | | code complexity
| * | | | | Don't pointlessly set ExtraParams = byte[1] in PrimitiveBaseShape since this ↵Justin Clark-Casey (justincc)2012-12-051-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | is ignored by the ExtraParams properly anyway
| * | | | | minor: tidy up spacing at bottom of MundaneFrameworkTestsJustin Clark-Casey (justincc)2012-12-051-6/+2
| | | | | |
| * | | | | In BaseHttpServer.HandleRequest(), use Culture.SetCurrentCulture() rather ↵Justin Clark-Casey (justincc)2012-12-051-1/+1
| | |_|_|/ | |/| | | | | | | | | | | | | than creating a new CultureInfo separately
* | | | | Merge branch 'master' into careminsterMelanie2012-11-2517-193/+148
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
| * | | | Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-2412-13/+21
| | | | | | | | | | | | | | | | | | | | automatically turns off any logging enabled between tests
| * | | | Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)2012-11-241-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parcel owner ID to the estate owner even if the group UUID was present. Aims to address http://opensimulator.org/mantis/view.php?id=6355 As part of this work, an incomplete IXGroupsData was added which currently only allows store/fetch/delete of group records (i.e. no membership data etc) This is subject to change and currently only an in-memory storage implementation exists for regression test purposes.
| * | | | Make "show threads" and "thread abort" console commands available on all serversJustin Clark-Casey (justincc)2012-11-233-108/+103
| | | | |
| * | | | Make "force gc" console command available across all serversJustin Clark-Casey (justincc)2012-11-232-11/+12
| | | | |
| * | | | Make "show version" console command available across all serversJustin Clark-Casey (justincc)2012-11-232-8/+7
| | | | |
| * | | | Delete unused BaseHttpServer.HandleAgentRequest()Justin Clark-Casey (justincc)2012-11-231-53/+0
| | | | |
* | | | | Fix new command console code to match the output of the original while keepingMelanie2012-11-231-2/+5
| | | | | | | | | | | | | | | | | | | | the new features
* | | | | Add a newline before the constant help textMelanie2012-11-231-0/+1
| | | | |
* | | | | Revert help to display a full command list. Leave the help categories in asMelanie2012-11-231-5/+6
| | | | | | | | | | | | | | | | | | | | "help categories" in case it turns out useful in the future. May not work.
* | | | | Merge branch 'master' into careminsterMelanie2012-11-231-1/+28
|\ \ \ \ \ | |/ / / /
| * | | | Add "help all" console command which will list all commands alphabetically ↵Justin Clark-Casey (justincc)2012-11-231-1/+28
| | | | | | | | | | | | | | | | | | | | in a single list
* | | | | Merge branch 'master' into careminsterMelanie2012-11-227-344/+561
|\ \ \ \ \ | |/ / / /
| * | | | Factor out command script code.Justin Clark-Casey (justincc)2012-11-221-2/+50
| | | | | | | | | | | | | | | | | | | | This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
| * | | | Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)2012-11-221-3/+137
| | | | |
| * | | | Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)2012-11-222-40/+47
| | | | | | | | | | | | | | | | | | | | Log path at which pid file is created or reason for failure to create.
| * | | | Add "get log level" command - this returns the current server session ↵Justin Clark-Casey (justincc)2012-11-221-19/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | console logging level. This supersedes getting information by calling "set log level" without a 4th argument, which is confusing.
| * | | | Remove unused BaseOpenSimServer.ShowHelp()Justin Clark-Casey (justincc)2012-11-221-21/+0
| | | | |
| * | | | Make "set log level" command available across all serversJustin Clark-Casey (justincc)2012-11-222-31/+31
| | | | |
| * | | | Make "show info" command available across all serversJustin Clark-Casey (justincc)2012-11-222-179/+183
| | | | | | | | | | | | | | | | | | | | This helpfully lists version information, startup location and console log level
| * | | | Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)2012-11-222-66/+76
| | | | |
| * | | | factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)2012-11-227-46/+69
| | | | |
* | | | | Merge branch 'master' into careminsterMelanie2012-11-222-25/+62
|\ \ \ \ \ | |/ / / /
| * | | | refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)2012-11-222-25/+62
| | | | |
* | | | | Merge branch 'master' into careminsterMelanie2012-11-201-2/+5
|\ \ \ \ \ | |/ / / /
| * | | | minor: If logging full incoming HTTP data, don't deceptively print ... at ↵Justin Clark-Casey (justincc)2012-11-201-2/+5
| | | | | | | | | | | | | | | | | | | | the end of the body.
* | | | | Merge branch 'avination' into careminsterMelanie2012-11-201-0/+2
|\ \ \ \ \
| * | | | | * Plumbing and basic setting of the GetMesh Cap Throttler.teravus2012-11-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | * Last step is to flip the throttle distribution.
| * | | | | Revert "Merge master into teravuswork", it should have been avination, not ↵teravus2012-11-1531-1808/+639
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
| * | | | | Merge master into teravusworkteravus2012-11-1531-639/+1808
| |\ \ \ \ \
* | \ \ \ \ \ Merge commit '619c39e5144f15aca129d6d999bcc5c34133ee64' into careminsterMelanie2012-11-201-1/+2
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs