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/man
AgeCommit message (Collapse)Author
2011-04-25Document MONO_WCF_TRACE environment variable.Atsushi Eno
2011-03-14Merge branch 'sgen-disable-gc' into mono-2-10Mark Probst
2011-03-14[sgen] Debug options for disabling minor and/or major collection.Mark Probst
2011-03-08[xbuild] Implement FileLogger . Fix #676650 .Ankit Jain
* FileLogger.cs: Implement Add corresponding command line args for file loggers. Update man page.
2011-03-08[xbuild] Update man page with info about FrameworkList.xmlAnkit Jain
2011-02-28[xbuild] Add support for multi-targeting arbitrary frameworks.Ankit Jain
ToolsVersion 4.0 supports targeting arbitrary frameworks defined by FrameworkList.xml files and referenced by $(TargetFrameworkMoniker), which is of the format: Identifier,Version=<version>[,Profile=<profile>] built as: $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion)[,Profile=$(TargetFrameworkProfile)] eg. '.NETFramework,Version=v4.0' . Frameworks are searched for in (order): 1. Paths specified in the environment variable $XBUILD_FRAMEWORK_FOLDERS_PATH 2. /Library/Frameworks/Mono.framework/External/xbuild-frameworks on Mac OSX. 3. MSBuild property $(TargetFrameworkRoot) 4. $prefix/lib/mono/xbuild-frameworks (default location) .NET frameworks 2.0/3.0/3.5/4.0 have corresponding FrameworkList.xml files now, which allows projects to target them. Custom frameworks like MonoDroid can install suitable FrameworkList.xml files, and projects can target them using the correct $(TargetFrameworkIdentifier) and $(TargetFrameworkVersion). Update man page.
2011-02-22[xbuild] Use the env var $MSBuildExtensionsPath before trying other paths.Ankit Jain
Change the order of the "search paths", so that the environment variable can always override it. Update the man page to reflect the change.
2011-01-30[repl] Add support for -e EXPRESSION to the csharp commandMiguel de Icaza
2011-01-30Document csharp #! supportMiguel de Icaza
2011-01-19Document precise markingRodrigo Kumpera
2011-01-17Add new mcs -sdk optionMarek Safar
2011-01-11[xbuild] Update man page, new search paths for extensions and .pc files.Ankit Jain
2010-12-11Update docsMiguel de Icaza
2010-12-03[sgen] Make concurrent sweep user-selectable.Mark Probst
It's off by default for now.
2010-11-29Log profiler: added statistical sampling mode.Paolo Molaro
* man/mprof-report.1, log-profiler.txt: updated the documentation. * decode.c: added jit report and sample report. * proflog.h, proflog.c: implemented statistical sampling mode, using either the mono built-in signal based sampling and the Linux perforamnce counters perf subsystem. Unmanaged symbols are currently available for ELF systems implementing dl_iterate_phdr() or systems implementing dladdr().
2010-11-20[sgen] Implement evacuation for parallel mark.Mark Probst
2010-11-19Remove mentions of Logging and Heap Shot profilers from man pageMiguel de Icaza
2010-11-12Log profiler: removed the hsmode option, use heapshot=MODE instead.Paolo Molaro
2010-11-11Added the mprof-report manpage.Paolo Molaro
2010-11-07[sgen] User-settable evacuation threshold.Mark Probst
A MONO_GC_PARAMS option for setting the evacuation threshold.
2010-11-03[API] X509 related enhacemnts to allow 1) associating keystore's private ↵Pablo Ruiz Garcia
keys with their corresponding public certificates found at X509Stores, and 2) importing private keys to X509Stores along with certificates. mcs/class/corlib/Mono.Security.X509/X509Store.cs: mcs/class/Mono.Security/Mono.Security.X509/X509Store.cs: mcs/class/corlib/Mono.Security.X509/X509StoreManager.cs: mcs/class/Mono.Security/Mono.Security.X509/X509StoreManager.cs: Modified MSX.X509Store to allow importing privateKeys along certificates (by using RSACryptoServiceProvider and KeyPairPersister). Fixed X509Store to use certificate's hash as CspParameters.KeyContainerName. mcs/tools/security/certmgr.cs: Added a new -importKey action to certmgr, which allows importing a PKCS12 contained key into our KeyPair store. Added a more (verbose) output to certmgr's -list action. man/certmgr.1: Updated certmgr man page ti reflect -importKey addition. mcs/class/corlib/System.Security.Cryptography/CspParameters.cs: mcs/class/corlib/System.Security.Cryptography/RSACryptoServiceProvider.cs: Implemented RSACryptoServiceProvider.CspKeyContainerInfo getter RSACryptoServiceProvider will not take into account CspParameterFlags.UseExistingKey by throwing a CryptographicException if keyset identified by KeyContainerName does not exists.
2010-10-21Document server option to --debugger-agentMiguel de Icaza
2010-09-07Add profile docsMiguel de Icaza
2010-09-05Add notes when to use cardtable and remset.Rodrigo Kumpera
2010-09-02[xbuild] Update man page to add "/tv:" option.Ankit Jain
Add option to specify toolsversion from the command line, to the man page.
2010-08-28Add env.var. to control revocation mode.Gonzalo Paniagua Javier
Added a new environment variable, MONO_X509_REVOCATION_MODE that lets the user choose the default validation mode for X509 chains.
2010-08-24[Documentation] Update man page with write barrier setting.Mark Probst
2010-08-23[tools] Merge mono-abi-info tool into a "--abi" flag for mono-api-infoAndrés G. Aragoneses
This commit also includes a brief (help welcome!) man page for mono-api-info that explains its usage.
2010-08-19[xbuild] Support extra paths for MSBuildExtensionsPath32/64 .Ankit Jain
Support extra search paths via env variables for MSBuildExtensionsPath32/64 also. Update man page.
2010-08-18[xbuild] Update man page.Ankit Jain
2010-08-18[xbuild] Add env var to dump details of reference resolution.Ankit Jain
If xbuild is unable to resolve a reference, then it dumps details of why it failed. This adds a env var XBUILD_LOG_REFERENCE_RESOLVER, which if set, logs those details of why a particular search path was used to resolve the reference. Update the man page also.
2010-08-17Copyright fix: the owner is Chris, not NovellMiguel de Icaza
2010-08-13Added ccrewrite.1 man page to makefileChris Bacon
2010-08-13Added man page for ccrewriteChris Bacon
2010-08-10[Documentation] Explain nursery size a bit in man page.Mark Probst
2010-08-08[sgen] Fixed heap for Mark&Sweep.Mark Probst
This is a new variant of Mark&Sweep which uses a pre-allocated fixed-size heap instead of a dynamically grown, segmented one. The main advantage of this heap organization is that it takes only one pointer comparison to determine whether an object is on the small object heap or in the LOS, instead of inspecting the object's size, which requires three loads. Since that determination is required for every marked object, speeding it up can improve performance significantly.
2010-08-07[sgen] Make parallel vs non-parallel mark&sweep selectable.Mark Probst
Make the parallel Mark&Sweep collector selectable with the "major" option of the "MONO_GC_PARAMS" variable as "marksweep-par". The serial Mark&Sweep collector remains the default as "marksweep".
2010-08-05[Documentation] Document SGen environment variables.Mark Probst
Document the MONO_GC_PARAMS variable in the man page and the "major" option of this variable in the error message.
2010-08-03Add the name="..." notation to the field examples too (besides the ↵Andrés G. Aragoneses
signature="..." one).
2010-07-16Fix a typo.Zoltan Varga
svn path=/trunk/mono/; revision=160471
2010-07-16Update manMiguel de Icaza
svn path=/trunk/mono/; revision=160463
2010-07-12In man:Rolf Bjarne Kvinge
2010-07-12 Rolf Bjarne Kvinge <RKvinge@novell.com> * mono.1: Document MONO_DEBUG's new reverse-pinvoke-exceptions option. In mono/mini: 2010-07-12 Rolf Bjarne Kvinge <RKvinge@novell.com> * mini.c|h: * mini-exceptions.c: Add an option to MONO_DEBUG for tracking down exceptions that reach native code from a reverse pinvoke. svn path=/trunk/mono/; revision=160250
2010-07-102010-07-09 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* driver.c (mini_usage): Change the name of the --sgen flag to be --gc=sgen and also support --gc=boehm. These flags can also be set on MONO_ENV_OPTIONS to propagate this to children processes. * main.c: Remove the MONO_VM_OPTIONS environment variable that only supported "sgen" and "llvm" config options and instead parse the MONO_ENV_OPTIONS as options that are parsed by the command line parser. Any command line option that Mono supports can be passed in this environment variable. svn path=/trunk/mono/; revision=160160
2010-07-09minimal docs for MONO_LLVMMiguel de Icaza
svn path=/trunk/mono/; revision=160146
2010-07-062010-07-05 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* driver.c (mono_main), main.c: Add support for MONO_VM_CONFIG that allows the user to force the VM to use llvm or sgen. svn path=/trunk/mono/; revision=159927
2010-07-05Document MONO_GC_DEBUGMiguel de Icaza
svn path=/trunk/mono/; revision=159910
2010-06-242010-06-23 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* configure.in: By default, we will now also buils an SGen-aware VM by default. This can be turned off by using the --with-sgen=no command line option. 2010-06-23 Miguel de Icaza <miguel@novell.com> * Makefile.am: Add support for building a sgen-aware versions of the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la, they share all the components of the default, but use a differen set of CFLAGS to enable SGEN instead. 2010-06-23 Miguel de Icaza <miguel@novell.com> * Makefile.am: Build the mono-sgen binary a Mono VM with the Sgen GC enabled as well as libmono-sgen-2.0 and libomonosgen-static * metadata: Move the mono-hash code here, as mono-hash is GC aware, but the mono/utils directory is not svn path=/trunk/mono/; revision=159514
2010-06-24Revert my changes, they break the buildMiguel de Icaza
svn path=/trunk/mono/; revision=159474
2010-06-24Update man pageMiguel de Icaza
svn path=/trunk/mono/; revision=159469
2010-04-272010-04-27 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* driver.c, mini.c: Since linking with LLVM makes the default Mono dirty an extra 70kb pages on startup we are now going to choose a different strategy: ship mono and mono-llvm binaries, with the second being the one that links with LLVM and defaults to LLVM being enabled. svn path=/trunk/mono/; revision=156193