简介
OSTEP - 全称 Operating Systems: Three Easy Pieces
本书主要从虚拟化、并发和持久性这三个方面描述了操作系统的作用、功能和实现机制,本书讲解清晰、透彻,但侧重于概念和实现机制的描述,本书需结合 APUE 和 MIT6.S081 进行实践
知识结构
TIP: WHEN IN DOUBT, TRY IT OUT
If you aren’t sure how some routine or operator you are using behaves,
there is no substitute for simply trying it out and making sure it behaves
as you expect. While reading the manual pages or other documentation
is useful, how it works in practice is what matters. Write some code and
test it! That is no doubt the best way to make sure your code behaves as
you desire. Indeed, that is what we did to double-check the things we
were saying about sizeof() were actually true!