From 46fbd2454c52d9aacf817d1126aff5b648f4ef58 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 26 Mar 2020 17:02:20 +0100 Subject: [PATCH] Add TODO for updating release date before publishing --- blog/content/second-edition/posts/12-async-await/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/blog/content/second-edition/posts/12-async-await/index.md b/blog/content/second-edition/posts/12-async-await/index.md index b3e0117e..08c0ef60 100644 --- a/blog/content/second-edition/posts/12-async-await/index.md +++ b/blog/content/second-edition/posts/12-async-await/index.md @@ -1805,3 +1805,6 @@ To utilize the waker notifications of the keyboard task, we created a new `Execu Using async/wait, we now have basic support for cooperative multitasking in our kernel. While cooperative multitasking is very efficient, it leads to latency problems when individual tasks keep running for too long and thus prevent other tasks to run. For this reason, it makes sense to also add support for preemptive multitasking to our kernel. In the next post, we will introduce _threads_ as the most common form of preemptive multitasking. In addition to resolving the problem of long running tasks, threads will also prepare us for utilizing multiple CPU cores and running untrusted user programs in the future. + + +TODO: update date \ No newline at end of file