1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-09 09:34:49 +09:00

Rename mention to master branch to main (#48824)

This commit is contained in:
Viktor Hofer 2021-03-01 10:09:31 +01:00 committed by GitHub
parent 79ae74f5ca
commit 3553284bea
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
122 changed files with 230 additions and 230 deletions

View file

@ -23,7 +23,7 @@ some terms that will be used often in this document.
such a way that it can be run *out of process*, when debugging .NET code using a debugger. The DAC
is used by higher-level components such as SOS (Son of Strike, a windbg/lldb debugger extension for
debugging managed code) and the DBI (a COM interface). The full details about the DAC are covered in
[this document](https://github.com/dotnet/runtime/blob/master/docs/design/coreclr/botr/dac-notes.md).
[this document](https://github.com/dotnet/runtime/blob/main/docs/design/coreclr/botr/dac-notes.md).
## Rationale and Goals of a Standalone GC
@ -47,7 +47,7 @@ Worth noting is that the JIT (both RyuJIT and the legacy JIT(s) before it) can b
and have realized these same benefits. The existence of an interface and an implementation loadable
from shared libraries has enabled RyuJIT in particular to be used as the code generator for both the
CoreRT compiler and crossgen, while still being flexible enough to be tested using tools that implement
very non-standard execution engines such as [SuperPMI](https://github.com/dotnet/runtime/blob/master/src/coreclr/ToolBox/superpmi/readme.txt).
very non-standard execution engines such as [SuperPMI](https://github.com/dotnet/runtime/blob/main/src/coreclr/ToolBox/superpmi/readme.txt).
The below loading protocol is inspired directly by the JIT loader and many aspects of the GC loader are identical
to what the JIT does when loading dynamic shared libraries.