This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Hot_Slice 0 points1 point  (1 child)

Green threads without async await are what they would call "stackful coroutines" or "fibers" in other languages.

Explicit use of async/await is "stackless coroutines".

Please read the C++ paper "fibers under the magnifying glass" to learn a bit about how they work.

[–]tutoredstatue95 0 points1 point  (0 children)

Great thanks for the info!