File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,6 @@ static zend_class_entry *zend_ce_fiber_error;
44
44
45
45
static zend_object_handlers zend_fiber_handlers ;
46
46
47
- static zend_object * zend_fiber_object_create (zend_class_entry * ce );
48
- static void zend_fiber_object_destroy (zend_object * object );
49
-
50
47
typedef void * fcontext_t ;
51
48
52
49
typedef struct _transfer_t {
@@ -492,7 +489,7 @@ ZEND_METHOD(Fiber, suspend)
492
489
zend_fiber_suspend (fiber );
493
490
494
491
if (fiber -> status == ZEND_FIBER_STATUS_SHUTDOWN ) {
495
- // This occurs when the fiber is GC'ed while suspended, do not add a ref .
492
+ // This occurs when the fiber is GC'ed while suspended.
496
493
if (EG (fiber_error )) {
497
494
// Throw UnwindExit so finally blocks are not executed on fatal error.
498
495
zend_throw_unwind_exit ();
You can’t perform that action at this time.
0 commit comments