We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e499a4d commit d4da78cCopy full SHA for d4da78c
scheduler.c
@@ -1302,11 +1302,11 @@ ZEND_STACK_ALIGNED void fiber_entry(zend_fiber_transfer *transfer)
1302
1303
ZEND_ASYNC_SCHEDULER_CONTEXT = true;
1304
1305
+ ZEND_ASSERT(circular_buffer_is_not_empty(resumed_coroutines) == 0 && "resumed_coroutines should be 0");
1306
+
1307
execute_microtasks();
1308
TRY_HANDLE_EXCEPTION();
1309
- ZEND_ASSERT(circular_buffer_is_not_empty(resumed_coroutines) == 0 && "resumed_coroutines should be 0");
-
1310
has_next_coroutine = circular_buffer_count(coroutine_queue) > 0;
1311
has_handles = ZEND_ASYNC_REACTOR_EXECUTE(has_next_coroutine);
1312
0 commit comments