aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-09-17Undo "Revert "Small changes to threading to send thread names to unmanaged ↵BlueWall1-1/+1
threads. Needs Mono 3.6+ to see thread names in utilities like top -H . Some formatting of the thread name to fin in the 16 byte limit on Linux. Please test on Windows to see if the work has any adverse effects."" Fix for break in next commit This reverts commit 376fab140227e92dbd841436509a97b87c9e7792.
2014-09-17Revert "Small changes to threading to send thread names to unmanaged ↵BlueWall1-1/+1
threads. Needs Mono 3.6+ to see thread names in utilities like top -H . Some formatting of the thread name to fin in the 16 byte limit on Linux. Please test on Windows to see if the work has any adverse effects." This reverts commit af286d5fcb688e8b64202b6deca4f249e9a2b6b8. Issue with Jenkins builds
2014-09-17Small changes to threading to send thread names to unmanaged threads. Needs ↵BlueWall1-1/+1
Mono 3.6+ to see thread names in utilities like top -H . Some formatting of the thread name to fin in the 16 byte limit on Linux. Please test on Windows to see if the work has any adverse effects.
2013-05-01Fix SmartThreadPool line endings in recent update from dos to unixJustin Clark-Casey (justincc)24-6358/+6358
2013-05-01Add in-code exaplanation for the change in cancellation signalling in STP ↵Justin Clark-Casey (justincc)1-0/+10
2.2.3. Remove left in Console.WriteLine accidentally inserted in recent 206fb306
2013-05-01Update SmartThreadPool to latest version 2.2.3 with a major and minor change.Justin Clark-Casey (justincc)26-4783/+6666
SmartThreadPool code comes from http://www.codeproject.com/Articles/7933/Smart-Thread-Pool This version implements thread abort (via WorkItem.Cancel(true)), threadpool naming, max thread stack, etc. so we no longer need to manually patch those. However, two changes have been made to stock 2.2.3. Major change: WorkItem.Cancel(bool abortExecution) in our version does not succeed if the work item was in progress and thread abort was not specified. This is to match previous behaviour where we handle co-operative termination via another mechanism rather than checking WorkItem.IsCanceled. Minor change: Did not add STP's StopWatch implementation as this is only used WinCE and Silverlight and causes a build clash with System.Diagnostics.StopWatch The reason for updating is to see if this improves http://opensimulator.org/mantis/view.php?id=6557 and http://opensimulator.org/mantis/view.php?id=6586
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)1-1/+1
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-01-19Assign the SmartThreadPool name in the constructorOren Hurvitz2-1/+21
This is required because some threads are created in the constructor, so assigning the name afterwards would be too late.
2012-11-13Updated all existing AssemblyVersions's to 0.7.5.*. Many DLLs still don't ↵Diva Canto1-1/+1
have an AssemblyInfo file.
2009-10-22* Allow SmartThreadPool to be initialized without setting max stack size ↵John Hurliman1-1/+5
(like the original implementation) * Only initialize Util's SmartThreadPool if it is actually being used * No longer initializing Util's SmartThreadPool with a custom max stack size. From MSDN: "Avoid using this constructor overload. The default stack size used by the Thread(ThreadStart) constructor overload is the recommended stack size for threads."
2009-02-19* Changed all AssemblyInfo to explicit version 1.0.0.0 to not confuse poor ↵lbsa711-1/+1
poor Nant. We probably should take the opportunity to let the non-module bins reside in their /bin/Debug dirs later.
2009-01-28Removing contents of ThirdParty/3Di. The load balancer can now be foundMike Mazur12-2825/+0
at http://forge.opensimulator.org/gf/project/loadbalancer/ config key: svn.rmdir
2008-12-01* minor: A few tiny bits of documentation and log message cleanup before ↵Justin Clarke Casey1-1/+1
starting something different
2008-09-08* some if inversions and added {}'s for readabilitylbsa712-34/+34
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-19/+19
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-19Correctly convert port to int.Mike Mazur1-1/+1
2008-08-19Convert LoadBalancer and RegionProxy plugins to use XML manifests. FixesMike Mazur4-17/+30
"Plugin Error: Node 'Type' not allowed" messages during region server startup.
2008-08-08Patch #9160Melanie Thielker1-2/+2
Refactor proxy encode/decode methods out of the PacketPool into their own class.
2008-07-31Apply updated patch from issue 1871. Thanks sempuki.Mike Mazur1-0/+1
2008-07-16Updated files for the loadbalancer web interfaceJohan Berntsson2-0/+121
2008-06-27last round of warning squashing. calling it a day now.Dr Scofield1-3/+5
2008-06-27Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2-2/+26
Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
2008-06-26small change to last commitMW2-4/+4
2008-06-26As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW2-4/+4
config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that. Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
2008-06-20Implemented plugin support for ClientStack, with LindenUDP as the default ↵Johan Berntsson1-0/+2
plugin. This makes it easy for developers to experiment with alternative communication protocols
2008-06-01* Refactor: Split opensim background server into a separate classJustin Clarke Casey2-3/+3
2008-05-30* This is Melanie's XEngine script engine. I've not tested this real well, ↵Teravus Ovares14-0/+5446
however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
2008-05-16Set svn:ignore. Minor formatting cleanup.Jeff Ames2-14/+14
2008-05-14From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey1-2/+2
Rename SearializableRegionInfo to SerializableRegionInfo (class was already named correctly)
2008-05-14More formatting cleanup. Minor refactoring.Jeff Ames1-2/+2
2008-05-14More formatting cleanup.Jeff Ames2-4/+7
2008-05-14Formatting cleanup.Jeff Ames2-4/+4
2008-05-12From: Alan M Webb <awebb@vnet.ibm.com>Justin Clarke Casey1-2/+2
This patch just tightens up console handling in BasOpenSimServer and removes (or redirects) a couple of messages that were being issued using Console.Writeline.
2008-05-08* Reduced major-ass ugly code in LoadBalancer/TcpClient.csAdam Frisby1-18/+12
* Still more needs to be done.
2008-05-08* Some refactorings.Adam Frisby1-3/+9
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
2008-05-03* Made 3Di LoadBalancerPlugin compatible with recent IClientNetworkServer ↵Adam Frisby1-7/+3
changes. * It's slightly hackish in that it will not work with another client type, but LoadBalancerPlugin is very dependent on the LL Architecture and is unlikely to be useful with a different protocol anyway.
2008-05-03* Refactoring and major cleaning work done on 3Di's LoadBalancerPlugin - ↵Adam Frisby1-77/+64
Johan, if you are still around, please shoot me a message.
2008-05-02* More refactorings of UDPServer.Adam Frisby2-13/+11
* Removed all references where possible. * Renamed lots of variables from UDPServerXYZ to clientServerXYZ
2008-05-02* Commit 3/3 - Please test this revision.Adam Frisby1-25/+34
2008-05-01* Thanks to Mic Bowman for inspiring me to look at that we are still using ↵Adam Frisby1-32/+0
ASCIIEncoder in places we shouldn't.
2008-05-01* Rolled back a few changes.Adam Frisby4-50/+56
2008-05-01* Cleaning code still.Adam Frisby4-55/+49
2008-05-01* Breaking all the code, breaking all the code..!Adam Frisby2-2/+2
* Made a bunch more members static, removed some dead code, general cleaning.
2008-04-29* Little more spring cleaning.Adam Frisby4-371/+463
2008-04-21* Committing fix for previous build breakage. Sorry!Adam Frisby4-42/+19
* Committing namespace/usings fixes for ThirdParty directory, missed in previous commit.
2008-03-24XmlRpcCommand refactoringJohan Berntsson1-15/+15
2008-03-14* Added null root part guardlbsa711-7/+7
* Normalized some UUID handling * Compacted a few Contains/Add into Set
2008-03-11Eliminated several compiler warning messagesJohan Berntsson3-150/+4
2008-03-11The plugin loader can now handle plugin dependencies without hardcodingJohan Berntsson2-1/+2
2008-03-11this fixes a port initialization problem in the LoadBalancer pluginJohan Berntsson1-3/+3