Apr 30, 2021 2 0 C++ coroutines: Waiting synchronously for our coroutine to complete Raymond Chen Using the extension point for another purpose.
Apr 29, 2021 0 0 C++ coroutines: Adding COM context support to our awaiter Raymond Chen Getting into the correct context on resume.
Apr 28, 2021 0 0 C++ coroutines: Snooping in on the coroutine body Raymond Chen Transformers are robots in disguise.
Apr 27, 2021 2 0 C++ coroutines: How do I create a coroutine that terminates on an unhandled exception? Raymond Chen You need to get inside the coroutine.
Apr 26, 2021 0 0 C++ coroutines: What does it mean when I declare my coroutine as noexcept? Raymond Chen The noexcept keyword doesn't mean what you think.
Apr 23, 2021 0 0 C++ coroutines: Associating multiple task types with the same promise type Raymond Chen Using the special initialization rule for get_return_object.
Apr 22, 2021 3 0 C++ coroutines: Improving cold-start coroutines which complete synchronously Raymond Chen Avoiding stack build-up.
Apr 21, 2021 3 0 C++ coroutines: Cold-start coroutines Raymond Chen On your mark, get set, wait for it!
Apr 20, 2021 1 0 C++ coroutines: Getting rid of our atomic variant discriminator Raymond Chen Don't look unless you know it's safe.
Apr 19, 2021 0 0 C++ coroutines: Allowing the awaiter to be destroyed while suspended Raymond Chen We were already there.