|
|
|
|
|
by vlovich123
240 days ago
|
|
The research Microsoft engineers did on stackful vs stackless coroutines for the c++ standard I think swayed this as “the way” to implement it for something targeting a systems level - significantly less memory overhead (you only pay for what you use) and offload the implementation details of the executor (lots of different design choices that can be made). |
|
> DO NOT USE FIBERS!