소스 검색

Update Paging.md

0xAX 10 년 전
부모
커밋
df3b0580a5
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      Theory/Paging.md

+ 3 - 1
Theory/Paging.md

@@ -15,7 +15,9 @@ In my view, memory management is one of the most complex part of the linux kerne
 As intel manual says:
 
 ```
-Paging provides a mech-anism for implementing a conventional demand-paged, virtual-memory system where sections of a program’s execution environment are mapped into physical memory as needed.
+Paging provides a mech-anism for implementing a conventional demand-paged, 
+virtual-memory system where sections of a program’s execution environment are 
+mapped into physical memory as needed.
 ```
 
 So... I will try to explain how paging works in theory in this post. Of course it will be closely related with the linux kernel for `x86_64`, but we will not go into deep details (at least in this post).