Skip to content

Commit

Permalink
polish an expression (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyujie2002 authored Apr 26, 2024
1 parent 397c28c commit d6007eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

用户模式(User Mode)和内核模式(Kernel Mode)是指处理器执行模式的专业术语。在内核模式下,代码能够完全 [#hypervisor]_ 控制 CPU,拥有最高权限;而用户模式下的代码则受到限制。例如,只有在内核模式下,才能启用或禁用 CPU 的本地中断;如果在用户模式下尝试这样的操作,则会触发异常,此时内核会介入处理。

.. [#hypervisor] 有些处理器可能具有比内核模式更高的特权,例如,虚拟机监视器(hypervisor)模式,仅允许在虚拟机监视器(虚拟机监控程序)中运行的代码访问。
.. [#hypervisor] 有些处理器可能具有比内核模式更高的特权,例如,虚拟机监视器(hypervisor)模式,在该模式下处理器仅允许在虚拟机监视器(虚拟机监控程序)中运行的代码访问。
用户空间(User Space)和内核空间(Kernel Space)专指与内存保护相关的概念,或者是与内核及用户应用程序相关联的虚拟地址空间。

Expand Down

0 comments on commit d6007eb

Please sign in to comment.