소스 검색

add watch_linux_pagefault.md

main
yuchen 9 년 전
부모
커밋
1dc0d0aa01
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. +20
    -0
      related_info/lab2/watch_linux_pagefault.md

+ 20
- 0
related_info/lab2/watch_linux_pagefault.md 파일 보기

@ -0,0 +1,20 @@
# linux系统中查看程序page fault(缺页异常)信息
## 介绍
Linux关于page fault的类型:
1. A major fault occurs when disk access required. For example, start an app called Firefox. The Linux kernel will search in the physical memory and CPU cache. If data do not exist, the Linux issues a major page fault.
2. A minor fault occurs due to page allocation.
## 查看方法
1. 使用`ps`命令
```
ps -eo min_flt,maj_flt,pid,%cpu,%mem,pagein,args --sort=min_flt
min_flt : Number of minor page faults.
maj_flt : Number of major page faults.
PAGEIN : Page Fault Count (表示页面从磁盘加载到内存的次数)
```

불러오는 중...
취소
저장