Update chapter name of post

This commit is contained in:
Philipp Oppermann
2020-03-27 17:30:37 +01:00
parent 5286828cb8
commit fb2b6f3685

View File

@@ -5,7 +5,7 @@ path = "async-await"
date = 2020-03-27
[extra]
chapter = "Interrupts"
chapter = "Multitasking"
+++
In this post we explore _cooperative multitasking_ and the _async/await_ feature of Rust. We take a detailed look how async/await works in Rust, including the design of the `Future` trait, the state machine transformation, and _pinning_. We then add basic support for async/await to our kernel by creating an asynchronous keyboard task and a basic executor.