Add TODO for updating release date before publishing

This commit is contained in:
Philipp Oppermann
2020-03-26 17:02:20 +01:00
parent fe0c8ccb0c
commit 46fbd2454c

View File

@@ -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