-
https://wood1314.github.io/year/01/22/ck5pcil1y000o4mu5xxwoa3wf/#more
-
https://heisenbergv.github.io/post/2019/20190928-csapp4/
虚拟内存系统解决了物理寻址的缺点。利用内存管理单元(MMU)和页表(Page Table)将虚拟地址转换为物理内存地址。 进程运行过程不再加载全
-
https://fyerfyer.github.io/2024/07/26/Introduction/?
fyerfyer's Web Intro
这是fyerfyer用来放自己写的学习笔记的网站(以后也可能会放别的东西)。
笔记的分类如下:
CSAPP的笔记(English
ver)
SICP in
Python的笔记
CS61B的笔记
《计算机系统要素》笔记(…
-
Note: we mostly implement features in the clangd language server, and rely on Microsoft's LSP client framework to expose these in VSCode. Features requiring a lot of VSCode-specific work are unlikely …
-
https://micint0sh.github.io/tech/CSAPP-Labs-Bomb-Lab/
-
https://bxrjmfh.github.io/%E5%AD%A6%E4%B9%A0%E8%AE%B0%E5%BD%95/csapp/2022/09/05/%E8%AF%BBCSAPP20220712.html?
读CSAPP20220712
-
https://github.com/DreamAndDead/CSAPP-3e-Solutions/blob/3eeb67a6f0e08de6d6c3f7ee002ab7f5f8b6f78a/chapter2/code/2.89.c#L31
when dx = le20, dy = le20, dz = le - 20
pauky updated
2 years ago
-
https://hansimov.gitbook.io/csapp/part3/ch12-concurrent-programming/12.5-synchronizing-thread-with-semaphores
配图有误(原书笔误)
Ref: https://stackoverflow.com/questions/48304514/what-does-this-x86-64-a…
-
make: *** No rule to make target 'plugin'. Stop.
what should I do?
Am I in wrong path?
-
### 第九章 虚拟存储器
- 虚拟存储器是对主存的一个抽象。处理器产生的虚拟地址,在被发送到主存之前,整个地址被翻译成一个物理地址。从虚拟地址空间到物理地址空间的地址翻译要求硬件和软件相互合作。专门的硬件通过使用页表来翻译虚拟地址,而页表的内容是由操作系统提供的。
- 虚拟存储器的作用
- 第一,它在主存中自动缓存最近使用的磁盘上的虚拟地址空间的内容。对磁盘上页的引用会触发却也,缺页…