From df3b0580a5684d986f1d0b359253b5565ab484d5 Mon Sep 17 00:00:00 2001 From: 0xAX Date: Sat, 28 Feb 2015 18:48:14 +0600 Subject: [PATCH] Update Paging.md --- Theory/Paging.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Theory/Paging.md b/Theory/Paging.md index 1461dba..6c81e0b 100644 --- a/Theory/Paging.md +++ b/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).