Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-11[Http]: Fix a potential race condition in the WebConnectionGroup's ↵monotouch-7.2.1-branchMartin Baulig
connection list. Remove the "ConnectionState" from the connection list before closing the connection, this should avoid ServicePoint.SendRequest() ever crashing with a NullReferenceException due to getting a null return value from WebConnectionGroup.GetConnection().
2014-06-11Fix warningsMarek Safar
2014-06-11[Http]: Only recycle ServicePoints from the idle timer (fixes #19823).Martin Baulig
Thanks a lot for Martin Potter to find and report the race condition which was causing the problem. ServicePointManager.RecycleServicePoints() was a left-over from the old times when we didn't have an idle-timer based approach.
2014-06-11Small fix.Martin Baulig
2014-06-11[Http]: Cleanup and simplify the ServicePoint's connection group list.Martin Baulig
2014-06-11[Http]: Cleanup chained async operations; bug #19161.Martin Baulig
2014-06-11[System] Fix build warningsMiguel de Icaza
2014-04-18[Http]: Correctly handle request bodies when resending with authentication.Martin Baulig
My previous changes modified the way how we're handing the request body when resending a request due to a 30x redirection. Authentication is a "special" form of redirection because we sometimes need to resend a request with additional authentication headers. Unfortunately, I forgot this, causing a regression which is now fixed. This has been reported as bugs #19119 and #19068.
2014-04-18[Http]: Disable redirect with body and no buffering.Martin Baulig
2014-04-18[Http]: Clear the 'SendChunked' flag when redirecting.Martin Baulig
2014-04-18[Http]: Remove chunked/etc headers when redirecting a request as GET.Martin Baulig
2014-04-09Revert "[runtime] Improve the hashing of MONO_TYPE_VAR/MONO_TYPE_MVAR. ↵Marek Safar
Hopefully fixes #18880." This reverts commit 0081c27e0d6473a83cc856abf67c4a42dc21b53d.
2014-04-09[interpreter] Disable fast call invocation using methodinfo delegates due to ↵Marek Safar
aot limitation. Fixes #18688
2014-04-09[runtime] Improve the hashing of MONO_TYPE_VAR/MONO_TYPE_MVAR. Hopefully ↵Zoltan Varga
fixes #18880.
2014-04-04[jit] Make generic ctor calls made out of gsharedvt methods indirect, since ↵Zoltan Varga
they cannot be patched. Fixes #18634.
2014-04-02[xbuild] Include PCL common targets in tarballMichael Hutchinson
BXC18690 - Microsoft.Portable.Common.targets is missing in mono 3.4.0 tarball
2014-03-31[corlib] Make invariant NumberFormatter thread static too as it has internal ↵Marek Safar
static state. Fixes #18599
2014-03-31[corlib] Filter out any right-to-left sign characters. Fixes #18522Marek Safar
2014-03-31Fix monotouch's repl support to build Mono.CSharp (and its dependencies) as ↵Rolf Bjarne Kvinge
well.
2014-03-25Revert "[llvm] Fix the build."mono-3.4.0Zoltan Varga
This reverts commit d6cc1326bc516a75a0f6bd21308cf3652afaab19. Revert this as it doesn't work with the currently used llvm version.
2014-03-24[llvm] Fix the build.Zoltan Varga
2014-03-18[mcs] Flow analysis of nested binary expressions inside anonymous methods ↵Marek Safar
was missing on left/right reset. Fixes #18417
2014-03-18[mcs] Emit field initializer with expression tree in all user constructors. ↵Marek Safar
Fixes #18308
2014-03-14System/PCL: Implement HttpWebRequest.SupportsCookieContainer, ↵Miguel de Icaza
WebRequest.CreateHttp; Fixes #18378
2014-03-14WebResponse.cs: Implement SupportsHeaders propertyMiguel de Icaza
2014-03-14[boehm] Fix memory management for toggleref.Rodrigo Kumpera
Replace GC_free with GC_INTERNAL_FREE. The former might take the GC lock and deadlock us. Replace GC_INTERNAL_MALLOC with GC_INTERNAL_MALLOC_IGNORE_OFF_PAGE as we don't need the rest of the GC messing around with the toggleref array.
2014-03-14[thread] Only register a dead letter if the current NSThread is non-null.Rodrigo Kumpera
This breaks all embedder that don't link with CoreFoundation. In mono's case, monodis.
2014-03-11[interpreter] Implement simple quote expression. Fixes #18248Marek Safar
2014-03-11Add support/ to the build when cross-compiling.Alex Rønne Petersen
2014-03-11[runtime] Fix the build with newer clang versions.Zoltan Varga
2014-03-11Merge pull request #945 from joelmartinez/masterRodrigo Kumpera
Documentation Update - 4.5 Profile
2014-03-10docupdate: System.Numerics documentation updateJoel Martinez
2014-03-10docupdate: Microsoft.CSharp documentation updateJoel Martinez
2014-03-10docupdate: System.ComponentModel.DataAnnotations documentation updateJoel Martinez
2014-03-10docupdate: System.ComponentModel.Composition documentation updateJoel Martinez
2014-03-10docupdate: System.Core documentation updateJoel Martinez
2014-03-10docupdate: System.IO.Compression documentation updateJoel Martinez
2014-03-10docupdate: System.Json documentation updateJoel Martinez
2014-03-10docupdate: System.Runtime.Serialization documentation updateJoel Martinez
2014-03-10docupdate: System.Security documentation updateJoel Martinez
2014-03-10docupdate: System.ServiceModel documentation updateJoel Martinez
2014-03-10docupdate: System.Xml.Linq documentation updateJoel Martinez
2014-03-10docupdate: System.Xml documentation updateJoel Martinez
2014-03-10docupdate: Mono.Options documentation updateJoel Martinez
2014-03-10docupdate: updated corlib documentation to the 4.5 profileJoel Martinez
2014-03-10Updated mdoc to remove <AssemblyVersions> tagJoel Martinez
2014-03-10Fixed some reference issues with mdoc.csproj: mono.cecil assembly reference, ↵Joel Martinez
and some resource files were incorrect
2014-03-10docupdate: updated System.dll documentationJoel Martinez
2014-03-10Updated makefile for Facades to avoid updating docs in that folder.Joel Martinez
2014-03-10[jit] Add support for --debug=casts to one cast codepath, factor out common ↵Zoltan Varga
code. Fixes #18280.