From: Richard Lander Date: Thu, 12 Feb 2015 06:40:28 +0000 (-0800) Subject: Update glossary based on issue #209 X-Git-Tag: accepted/tizen/base/20180629.140029~7137 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc715d4a4fb4cf8fcefdc16ef6125c31800aa8ed;p=platform%2Fupstream%2Fcoreclr.git Update glossary based on issue #209 --- diff --git a/Documentation/dotnet-filenames.md b/Documentation/dotnet-filenames.md new file mode 100644 index 0000000..948b3d8 --- /dev/null +++ b/Documentation/dotnet-filenames.md @@ -0,0 +1,10 @@ +.NET Filename Encyclopedia +=== + +.NET has had many mysterious filenames over time. This document defines their purpose. + +- coreclr.dll: The implementation of CoreCLR. +- clr.dll: The implemenation of the .NET Framework CLR since the .NET Framework 4. +- mscorwks.dll: The .NET Framework CLR implementation up until version 2/3.5. It was called "wks" (pronounced "works") because it originally contained the client or "workstation" GC. Up until the .NET Framework 2, there was another variant of the CLR that contained the "server" GC, called msworksvr.dll. In the .NET Framework 2 release, the workstation and server GC were merged together in a single implementation, in mscorwks.dll, while mscorsvr.dll was deprecated. +- mscorsvr.dll: See mscorwks.dll. +- mscordacwks: A variant of mscorwks.dll, used only/primarily while debugger. It contains the "DAC" version of the VM implementation. \ No newline at end of file diff --git a/Documentation/glossary.md b/Documentation/glossary.md index f8fa9f2..581d2ac 100644 --- a/Documentation/glossary.md +++ b/Documentation/glossary.md @@ -5,9 +5,13 @@ This glossary defines terms, both common and more niche, that are important to u As much as possible, we should link to the most authoritative and recent source of information for a term. That approach should be the most helpful for people who want to learn more about a topic. +* CLR: Common Language Runtime * COR: [Common Object Runtime](http://www.danielmoth.com/Blog/mscorlibdll.aspx). The name of .NET before it was named .NET. * DAC: Data Access Component. An abstraction layer over the internal structures in the runtime. * EE: Execution Engine. * 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 * SOS: [Son of Strike](http://blogs.msdn.com/b/jasonz/archive/2003/10/21/53581.aspx). The debugging extension for DbgEng based debuggers. Uses the DAC as an abstraction layer for its operation. -* URT: Universal Runtime. Ancient name for what ended up being .NET, is used in the WinError facility name FACILITY_URT. \ No newline at end of file +* SVR: The CLR used to be built as two variants, with one called "mscorsvr.dll", to mean the "server" version. In particular, it contained the server GC implementation, which was intended for multi-threaded apps capable of taking advantage of multiple processors. In the .NET Framework 2 release, the two variants were merged into "mscorwks.dll". The WKS version was the default, however the SVR version remained available. +* URT: Universal Runtime. Ancient name for what ended up being .NET, is used in the WinError facility name FACILITY_URT. +* VM: Virtual machine. +* WKS: The CLR used to be built as two variants, with one called "mscorwks.dll", to mean the "workstation" version. In particular, it contained the client GC implementation, which was intended for single-threaded apps, independent of how many processors were on the machine. In the .NET Framework 2 release, the two variants were merged into "mscorwks.dll". The WKS version was the default, however the SVR version remained available. \ No newline at end of file