内存

内存管理

关于匿名内存,

Anonymous memory is a memory mapping with no file or device backing it. This is how programs allocate memory from the operating system for use by things like the stack and heap.

我们平时用的内存一般都是匿名的。(过去误以为未初始化才是,确实有点问题。。。)

如果是映射或者共用的(KSM),那才是其他类型。

参考资料

some text

linux-4.11.0代码

《奔跑吧!linux内核》

《计算机体系结构》胡伟武