What is the resident set and working set of a process?
总结:resident page set (常驻页集) 是在内存内被进程使用的部分,free frame pool相当于常驻页和磁盘之间的缓冲区。
当发生缺页中断(常驻页没有该页)时,会先查找free frame pool,
若有,则读进来,并把一页替换进pool,
若没有,pool先从磁盘读入,(同时,如果pool满了,有一页被舍弃),然后再读入常驻页。
What is the resident set and working set of a process?
总结:resident page set (常驻页集) 是在内存内被进程使用的部分,free frame pool相当于常驻页和磁盘之间的缓冲区。
当发生缺页中断(常驻页没有该页)时,会先查找free frame pool,
若有,则读进来,并把一页替换进pool,
若没有,pool先从磁盘读入,(同时,如果pool满了,有一页被舍弃),然后再读入常驻页。