mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Avoid Zola errors in new 3rd edition draft
This commit is contained in:
@@ -1,8 +1,7 @@
|
|||||||
+++
|
+++
|
||||||
title = "A Minimal Rust Kernel"
|
title = "A Minimal Rust Kernel"
|
||||||
weight = 2
|
weight = 2
|
||||||
path = "minimal-rust-kernel"
|
date = 0000-01-01
|
||||||
date = 2018-02-10
|
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
chapter = "Bare Bones"
|
chapter = "Bare Bones"
|
||||||
@@ -426,7 +425,7 @@ The [`extern "C"`] qualifier specifies that the function should use the same [AB
|
|||||||
The `!` return type indicates that the function is [diverging], which means that it must never return. The `bootloader` requires this because its code might no longer be valid after the kernel modified the system state such as the [page tables].
|
The `!` return type indicates that the function is [diverging], which means that it must never return. The `bootloader` requires this because its code might no longer be valid after the kernel modified the system state such as the [page tables].
|
||||||
|
|
||||||
[diverging]: https://doc.rust-lang.org/rust-by-example/fn/diverging.html
|
[diverging]: https://doc.rust-lang.org/rust-by-example/fn/diverging.html
|
||||||
[page tables]: @/second-edition/posts/08-paging-introduction/index.md
|
[page tables]: @/edition-2/posts/08-paging-introduction/index.md
|
||||||
|
|
||||||
</details></div>
|
</details></div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user