Fibers Iimplementation in Linux operating system [Advanced Operating Systems and Virtualization - 2018]
Authors: Matteo Mariani & Riccardo Chiaretti.
(update 18/11/2018) There are two version of the code:
-
code: this is the fastest version ad it has three fundamental data structures: Process, Thread and Fiber. Refactoring has been done correctly.
-
code_slower: this is the slowest version and it has two fundamental data structures: Process and Fibers. Keep in mind that refactoring has not been done.