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
path: root/data
AgeCommit message (Collapse)Author
2013-05-01remove wrong EOLs after Libs: in reactive.pc.in. Third attempt to fix bug ↵Atsushi Eno
#10002.
2013-02-21[Cairo] Fix mono-cairo.pc file to not hardcode 2.0 profileAndres G. Aragoneses
Fixes BXC#10484.
2013-01-28[sgen] Fix internal allocator DTrace probes commit.Mark Probst
2013-01-26[sgen] DTrace probes for internal allocations.Mark Probst
2013-01-25[sgen] DTrace probe for cementing objects.Mark Probst
2013-01-11[sgen] DTrace probe for when a GC is requested.Mark Probst
2013-01-03[sgen] More dtrace probes.Mark Probst
2012-12-11Add Reactive Extensions as installed libs, take 2 (with fixed rpmspec this ↵Atsushi Eno
time).
2012-12-09[sgen] DTrace probes for finalisers and weak links.Mark Probst
2012-12-09[sgen] Number of major objects marked in concurrent DTrace probes.Mark Probst
Can be enabled/disabled via #define in sgen-conf.h. Disabled by default because it's a small performance hit.
2012-12-09[sgen] More information in sweep and world restart DTrace probes.Mark Probst
Pass to the sweep probes whether a full sweep (including memset and resetting mark bitmaps) was performed. Pass to the world restart probes the oldest generation collected during the pause.
2012-12-09[sgen] DTrace probes for sweep begin/end and concurrent start/finish begin/end.Mark Probst
2012-12-09[sgen] DTrace probes for world stop/restart.Mark Probst
2012-09-29[dtrace] Turns out "sweeped" is not a word.Mark Probst
2012-09-29[dtrace] Make pointers into user space uintptr_t instead of void*.Mark Probst
2012-09-29[dtrace] Probe for object moved, within or between heaps.Mark Probst
2012-09-29[dtrace] Pass namespace and class name to probes where appropriate.Mark Probst
2012-09-29[dtrace] Probes for large and pinned allocation.Mark Probst
2012-09-29[dtrace] Probe for pinning of objects.Mark Probst
2012-09-29[dtrace] Probe for major heap area sweep.Mark Probst
2012-09-29[dtrace] Probe for nursery fragment creation aka nursery sweep.Mark Probst
2012-09-29[dtrace] Probes for degraded and mature allocation.Mark Probst
2012-09-29[dtrace] Allocation of TLABs. Allocation of objects directly from nursery.Mark Probst
2012-09-29[dtrace] Probes for taking/releasing the GC lock.Mark Probst
2012-09-29[dtrace] GC heap allocation probes for SGen.Mark Probst
These trigger whenever a segment of heap memory is allocated from the OS, or freed to the OS again.
2012-09-15Revert "Use the full path to MonoPosixHelper in mono's config file."Duncan Mak
This reverts commit bf095d7057e742420a0d3f165083ae1b254421f9.
2012-09-13Include gdiplus in mono/config.Duncan Mak
2012-09-13Use the full path to MonoPosixHelper in mono's config file.Duncan Mak
2012-04-26Include MVC3 and aspnetwebstack assemblies pkg-config filesMarek Habersack
2011-10-17Do not reference mscorlib explicitly in 4.5, mcs seems to do that despite ↵Marek Habersack
/noconfig This fixes ASP.NET/ASP.NET MVC applications using the 4.5 profile
2011-10-17Unbreak System.Web tests in the 4.5 profileMarek Habersack
2011-09-29Distribute net_4_5 specific dataMarek Safar
2011-09-04Print null MonoVTable's correctly in gdb.Zoltan Varga
2011-08-17update CecilJb Evain
2011-06-20Fix the cairo dllmap on OS XMichael Hutchinson
2011-04-28Add entries for MD4 in machine.config (fix #682619)Sebastien Pouliot
2011-03-30Pretty print generic instances better in xdebug.Zoltan Varga
2011-03-28Pretty print null MonoGenericContext's in xdebug correctly.Zoltan Varga
2011-03-16Pretty print MonoVTable in xdebug.Zoltan Varga
2011-03-14Add new ignore file.Gonzalo Paniagua Javier
2011-03-07Fix the previous change.Zoltan Varga
2011-03-07Fix out-of-tree builds.Zoltan Varga
2011-03-07[Mono.Options] Add option header support.Jonathan Pryor
Option headers can be provided via OptionSet.Add(string), and allows forgoing the use of a separate mechanism to provide contextual output. For example, one used to do this: bool show_help = false; new OptionSet { // ... { "help|h|?", v => show_help = v != null }, }.Parse (args); if (show_help) { Console.WriteLine ("usage: sample-app ARGS"); p.WriteOptionDescriptions (Console.Out); // ... } Using the new header support, the "contextual" output can be merged with the option specification: bool show_help = false; new OptionSet { "usage: sample-app ARGS", { "help|h|?", v => show_help = v != null }, }.Parse (args); if (show_help) p.WriteOptionDescriptions (Console.Out); Furthermore, headers can be provided "inline", thus serving as a mechanism to categorize options: // mcs options var p = new OptionSet { "Mono C# compiler, Copyright 2001 - 2011 Novell, Inc.", "mcs [options] source-files", // ... "Resources:", { "linkresource|linkres:", v => /* ... */ }, // ... "", "Options can be of the form -option or /option", };
2011-03-04Install a mono-sgen-gdb.py as well.Zoltan Varga
2011-02-11Pretty print MonoString* too in xdb.Zoltan Varga
2011-01-27[machine.config] Added the <system.transactions> section definitionMarek Habersack
2011-01-24[build] pkg-config support for libmonosgen.Mark Probst
2010-12-13[asp.net] .NET 4.0 declares the <system.web.extensions> section in ↵Marek Habersack
machine.config
2010-12-01Add response file suport to Mono.Options.Jonathan Pryor
Response file support is an "opt-in" feature, performed by adding a ResponseFileSource to the OptionSet initialization logic: var p = new OptionSet () { // normal options here... new ResponseFileSource (), }; Response files make use of the new "ArgumentSource" support, which acts as a low-level argument pre-processor, allowing processing of arguments _before_ Option processing is performed.
2010-11-23Merge branch 'cecil-light'Jb Evain