diff options
author | Matt Warren <matt.warren@live.co.uk> | 2018-01-17 13:07:07 +0000 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2018-01-17 05:07:07 -0800 |
commit | 8d84ea8193cad1a129385920d3982fe2de44c898 (patch) | |
tree | b73948f91da223d901b01377c339b2f33b6cb427 /Documentation | |
parent | b76fdf6329aab09e21ad65d4d7497df1ce7b66cf (diff) | |
download | coreclr-8d84ea8193cad1a129385920d3982fe2de44c898.tar.gz coreclr-8d84ea8193cad1a129385920d3982fe2de44c898.tar.bz2 coreclr-8d84ea8193cad1a129385920d3982fe2de44c898.zip |
Add MDA (Managed Debugging Assistant) (#15875)
* Add MDA (Managed Debugging Assistant)
* Info about MDA's in .NET Core
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/project-docs/glossary.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/project-docs/glossary.md b/Documentation/project-docs/glossary.md index 2a4e912cf3..97ff618c08 100644 --- a/Documentation/project-docs/glossary.md +++ b/Documentation/project-docs/glossary.md @@ -20,6 +20,7 @@ As much as possible, we should link to the most authoritative and recent source | JIT | [Just-in-Time](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/ryujit-overview.md) compiler. RyuJIT is the code name for the next generation Just-in-Time(aka "JIT") for the .NET runtime. | | LCG | Lightweight Code Generation. An early name for [dynamic methods](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Reflection/Emit/DynamicMethod.cs). | | MD | MetaData. | +| MDA | Managed Debugging Assistant - see [details](https://docs.microsoft.com/en-us/dotnet/framework/debug-trace-profile/diagnosing-errors-with-managed-debugging-assistants) (Note: Not in .NET Core, equivalent diagnostic functionality is made available on a case-by-case basis, e.g. [#15465](https://github.com/dotnet/coreclr/issues/15465)) | | NGen | Native Image Generator. | | NYI | Not Yet Implemented. | | PAL | [Platform Adaptation Layer](http://archive.oreilly.com/pub/a/dotnet/2002/03/04/rotor.html). Provides an abstraction layer between the runtime and the operating system. | |