
深入理解计算机系统
渡人先渡己
个人github github.com/marco2013
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
能否通过信号对其它进程里的事件进行计数?--csapp 3.e homework 8.23
#include "../csapp.h" volatile int counter = 0; void handler(int sig) { counter++; sleep(1); //do some work in the handler return; } int main() { int i; S...原创 2019-04-21 07:59:45 · 268 阅读 · 0 评论 -
csapp chapter 9 - 虚拟内存笔记
Why and what is VM? Three Import capability of VM ? It works automatically, why need to understand it? Perspective to study VM 1. 物理与虚拟寻址 2. 地址空间 3. VM作为缓存的工具 4. VM作为内存管理的工具 5. VM作为内存保护的工具 Wh...原创 2019-04-22 11:11:54 · 326 阅读 · 0 评论