From 16356ca82172b59574439163b3911122f93d97ee Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 28 Jan 2020 14:08:02 +0100 Subject: [PATCH] Create skeleton for new post about threads --- .../second-edition/posts/12-threads/index.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 blog/content/second-edition/posts/12-threads/index.md diff --git a/blog/content/second-edition/posts/12-threads/index.md b/blog/content/second-edition/posts/12-threads/index.md new file mode 100644 index 00000000..838c8295 --- /dev/null +++ b/blog/content/second-edition/posts/12-threads/index.md @@ -0,0 +1,42 @@ ++++ +title = "Threads" +weight = 12 +path = "threads" +date = 0000-01-01 + +[extra] +chapter = "Multitasking" ++++ + +TODO + + + +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-12`][post branch] branch. + +[GitHub]: https://github.com/phil-opp/blog_os +[at the bottom]: #comments +[post branch]: https://github.com/phil-opp/blog_os/tree/post-12 + + + +## Introduction + +### Multitasking + +## Thread Creation + +### Stack Allocation + +## Switching Stacks + +## Saving Registers + +## Scheduler + +## Summary +TODO + +## What's next? + +TODO \ No newline at end of file