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/docs
AgeCommit message (Collapse)Author
2017-03-12[docs] Remove dead metadata APIs.Jon Purdy
2017-03-12[docs] Remove dead mempool APIs.Jon Purdy
2017-03-12[docs] Remove dead hash table APIs.Jon Purdy
2017-03-12[docs] Remove dead GC APIs.Jon Purdy
2017-03-12[docs] Remove dead remote wrapper APIs.Jon Purdy
They were deleted in d1ace1652b2063ea2c416351bd70b32470f55b9b.
2017-03-12[docs] Remove dead loader error APIs.Jon Purdy
They were deleted in 38cf816b97dff972b996905cd3a8e6ecbfdd2861.
2017-03-09[api] Remove dead mono_load_image API.Jon Purdy
2017-02-23Fix Windows build due to line ending changes in sedAlexander Köplinger
The recent sed update in cygwin [1] changed the way sed handles carriage returns. This meant that every .in file we processed still contained CR, which doesn't work for .sh files. Force LF line endings for those files (and also other shell scripts). [1] https://cygwin.com/ml/cygwin-announce/2017-02/msg00036.html
2017-02-21correct spelling mistakes (#4405)Edward Betts
2017-01-28[docs] Add a basic doxyfileJon Purdy
Bare minimum Doxygen configuration with dependency graphs.
2016-12-14[exception] rename mono_handle_native_sigsegv -> mono_handle_native_crashBernhard Urban
2016-08-19GC bridge: Include non-bridged objects in the exported object graphAndi McClure
Introduces a mechanism for non-bridged SCCs which lay between bridged SCCs in the SCC forest to be reported to the bridge client. In this version, such non-bridged SCCs are always reported. The result is that most GCs get a little slower but GCs in which the "double fan" shape appears (many bridged objects link to one C# object which links to many bridged objects) become massively faster. Because before clients were allowed to assume exported SCCs were always bridged, SGEN_BRIDGE_VERSION has been incremented.
2016-04-04[build] Change the way how mcs references are passed to compiler to always ↵Marek Safar
use full path. One of csc prerequisites because csc uses -lib as path which is considered after RuntimeEnvironment.GetRuntimeDirectory which makes -lib useless
2016-03-16[build] Add missing explicit references in docsMarek Safar
2016-02-10[Docs] handle code-markdown with dots on the namesMiguel de Icaza
2016-02-09[Docs] Continue to improve the Mono runtime documentationMiguel de Icaza
2016-02-09[Docs] Improved the rendering, added some docsMiguel de Icaza
2016-02-09[Docs] Use an external style sheet, prefix the css classes with mapi to ↵Miguel de Icaza
isolate, fix various processing problems
2016-02-09[Documentation] Fix the nesting of docsMiguel de Icaza
2016-02-08[docs] Improve the rendering of our API binding APIs and runtime API ↵Miguel de Icaza
documentation
2016-02-03Merge pull request #2542 from akoeplinger/remove-changelogAlexander Köplinger
Remove ChangeLog files from the repo
2016-02-03[docs] remove a deleted file from EXTRA_DISTAlexander Köplinger
2016-02-03[Runtime Documentation] More work on runtime documentationMiguel de Icaza
2016-02-03[Documentation] Document some of Mono's embedding API, improve the styleMiguel de Icaza
2016-02-03Remove stale filesMiguel de Icaza
2016-02-03Remove from the documentation non-public APIs, or move to files that flag ↵Miguel de Icaza
them as internal
2016-02-03Updated the runtime template documentation with all new APIs in MonoMiguel de Icaza
2016-01-29Remove ChangeLog files from the repoAlexander Köplinger
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
2016-01-25[runtime] Allow getting thread name, managed id from embedding APIJonathan Pryor
When tracing multi-threaded program execution, it is useful to have a way of separating which events happen on which thread. The System.Threading.Thread.Name and Thread.ManagedThreadId properties are useful proxies for tracking program execution. However, if program execution spans both managed and embedded mono native code, there is no existing mechanism to read the Thread.Name or Thread.ManagedThreadId properties from native code without using delegates, and delegates may not be usable in all circumstances (e.g. within a mono_gc_register_bridge_callbacks() callback). Add the following APIs to the embedding API to permit reading the Thread.Name and Thread.ManagedThreadId properties: char *mono_thread_get_name_utf8 (MonoThread *thread); gint32 mono_thread_get_managed_id (MonoThread *thread); mono_thread_get_name_utf8() returns the Thread.Name value as a UTF-8 string in newly allocated memory; the caller must g_free() this value. mono_thread_get_managed_id() returns the Thread.ManagedThreadId value.
2015-07-15[build] Update docs profile pathsMarek Safar
2015-04-28Remove MONO_API from some internal GC APIs.Alex Rønne Petersen
2015-04-08Fix "make dist"Alexander Köplinger
EXTRA_DIST still included files that were removed in 467ca088b6accb38f258197d03b5e872e0f663a6 and 4cd4437b1fa3d0e7dd22caa34228c00666c4a849.
2015-04-07Remove outdated documentation from the docs subdirectory.Alex Rønne Petersen
2014-11-05Make the build in docs/ uses the net 4.5 profile.Zoltan Varga
2014-05-18[docs] closing h2 tagxplicit
2014-05-18added closing h4 tagxplicit
2014-05-09fix previous change (huh, I was blind, no such option -f, use -p).Atsushi Eno
2014-05-09use mkdir -f to ignore "directory already exists" error.Atsushi Eno
2014-04-16Runtime documentation will now build with srcdir != builddirMiguel de Icaza
This removes an old and broken patch that did not allow for clean builds of Mono. The old patch was so bad, that instead of fixing the actual source of the problem (the ability to build the runtime documentation when the source directory was not the same as the build directory), a hack was added to circumvent `make distcheck''s security system and changed the permissions at build time for the source directory to become read/write. This fixes the problem
2013-10-21Add mono_gc_wbarrier_generic_store_atomic () function.Alex Rønne Petersen
This is used in place of mono_gc_wbarrier_generic_store () when we need the store to be atomic with release semantics.
2012-12-20[runtime/docs] Update tocJérémie Laval
2012-12-12[doc] Disable mono-tracing as an documented API in TOC as it's not generated ↵Jérémie Laval
anymore.
2012-11-23[monkeydoc] Merge/add monkeydoc to master.Jeremie Laval
The commit also contains tiny changes to existing xml documentation, restoring docs that were lost and a couple fixes to mdoc/monodoc to cope with the new system.
2012-11-14import Microsoft Reactive Extensions from rx.codeplex.com and add to build.Atsushi Eno
2011-08-10Corrected word spellingAndre Azevedo
2011-08-04Add a list of historic Mono branches, before we delete them from the serverMiguel de Icaza
2010-07-28Add a few .gitignore entries to reduce noiseRaja R Harinath
2010-07-25EOL handlingRaja R Harinath
This set of .gitattributes was automatically generated from the list of files that GIT tried to normalize when I enabled automatic EOL conversion. With this set of attributes, we prevent automated EOL conversion on files that we know will cause trouble down the road.
2010-05-26Update docsMiguel de Icaza
svn path=/trunk/mono/; revision=157966
2010-05-11Big documentation updateMiguel de Icaza
svn path=/trunk/mono/; revision=157145