The series continue.
C++ coroutines: Allowing the awaiter to be destroyed while suspended
by Raymond Chen
Form the article:
One issue that we dealt with when we created our co_await awaitable signal was the case of the awaiter being destroyed while suspended. We had been ignoring that problem in our coroutine promise, but we can’t keep our head in the sand forever. Let’s take a look around and see where we are.
Add a Comment
Comments are closed.