Add an inline table of contents to all posts

This commit is contained in:
Philipp Oppermann
2019-03-19 13:01:25 +01:00
parent 6055a2e342
commit 48d96243ea
10 changed files with 20 additions and 0 deletions

View File

@@ -16,6 +16,8 @@ This blog is openly developed on [GitHub]. If you have any problems or questions
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-09
<!-- toc -->
## Memory Protection
One main task of an operating system is to isolate programs from each other. Your web browser shouldn't be able to interfere with your text editor, for example. To achieve this goal, operating systems utilize hardware functionality to ensure that memory areas of one process are not accessible by other processes. There are different approaches, depending on the hardware and the OS implementation.