Fix release date

This commit is contained in:
Philipp Oppermann
2017-03-26 18:39:08 +02:00
parent 1cc5f055f7
commit 9e79c6bd97

View File

@@ -1,6 +1,6 @@
+++ +++
title = "Handling Exceptions" title = "Handling Exceptions"
date = "2017-03-09" date = "2017-03-26"
+++ +++
In this post, we start exploring CPU exceptions. Exceptions occur in various erroneous situations, for example when accessing an invalid memory address or when dividing by zero. To catch them, we have to set up an _interrupt descriptor table_ that provides handler functions. At the end of this post, our kernel will be able to catch [breakpoint exceptions] and to resume normal execution afterwards. In this post, we start exploring CPU exceptions. Exceptions occur in various erroneous situations, for example when accessing an invalid memory address or when dividing by zero. To catch them, we have to set up an _interrupt descriptor table_ that provides handler functions. At the end of this post, our kernel will be able to catch [breakpoint exceptions] and to resume normal execution afterwards.