Michael Scott Mueller

Results 6 comments of Michael Scott Mueller

Related: #1332 **co_spawn_cancellation_handler use after free crash**

I have been tracking down this issue with a parallel_group running in wait_for_one_error() mode. I have two tasks running- one is a network sequence and the other is a wait...

He's trying to make certain that the cancellation gets dispatched on the same executor- so we need to ensure that the signal is alive. Something like this should also work:...

What version of compiler and build configuration are you using? It looks like the jump table parsing isn't working currently- I'll need to dig into the disassembly to see how...

It looks like this is by design. According to the C++11 spec (ISO_IEC_14882_2012), in [thread.condition.condvar], we have the following: ```template cv_status wait_until(unique_lock& lock, const chrono::time_point& abs_time); ``` _Effects:_ - Atomically...

Your lambda is getting destructed when async_wait returns after the coroutine is suspended. All capture variables will be destructed. Work around this by saving off your captured variables to the...