mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00
Update glossary based on issue dotnet/coreclr#209
Commit migrated from fc715d4a4f
This commit is contained in:
parent
6c4b58a72d
commit
bbc9ef6a38
2 changed files with 15 additions and 1 deletions
10
docs/coreclr/dotnet-filenames.md
Normal file
10
docs/coreclr/dotnet-filenames.md
Normal file
|
@ -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.
|
|
@ -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.
|
||||
* 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.
|
Loading…
Add table
Add a link
Reference in a new issue