Update site/content/entry/yuzu-progress-report-may-2021/index.md

Co-authored-by: Schplee <24275329+Schplee@users.noreply.github.com>
This commit is contained in:
Matías Locatti 2021-06-09 09:27:11 -03:00 committed by liushuyu
parent 1c50f030b1
commit 0f4bce997c

View file

@ -98,7 +98,7 @@ This was a big change that involved refactoring the codebase for consistency and
new behaviour correctly.
Part of the work also involved improving some [system calls](https://en.wikipedia.org/wiki/System_call) (the so-called `SVCs`)
by implementing missing services such as `UnmapSharedMemory`, and making the implementation of other calls more robust (e.g. better error checking, etc.).
These `SVC`s are functions used by games or user software to signal the OS that they want to perform operations for which they do not have the necessary permissions,
These `SVCs` are functions used by games or user software to signal the OS that they want to perform operations for which they do not have the necessary permissions,
such as access to hardware elements — for example, some I/O devices.
Thus, a process asks the entity with the highest permissions — that is, the kernel — to perform these actions on its behalf.
These `SVC` functions are essential for the communication between processes and the OS, so their correct functioning is imperative,