Zend/zend_gc: include cleanup

This commit is contained in:
Max Kellermann
2023-01-04 20:54:16 +01:00
committed by George Peter Banyard
parent 7e87551c37
commit e883ba93c4
2 changed files with 11 additions and 3 deletions

View File

@ -66,9 +66,14 @@
*
* @see http://researcher.watson.ibm.com/researcher/files/us-bacon/Bacon01Concurrent.pdf
*/
#include "zend.h"
#include "zend_API.h"
#include "zend_fibers.h"
#include "zend_gc.h"
#include "zend_alloc.h" // for ZEND_MM_OVERHEAD
#include "zend_fibers.h" // for zend_fiber_switch_block()
#include "zend_globals.h" // for struct _zend_executor_globals
#include "zend_globals_macros.h" // for EG()
#include "zend_objects.h" // for zend_objects_destroy_object()
#include "zend.h" // for zend_error()
#ifndef GC_BENCH
# define GC_BENCH 0

View File

@ -20,6 +20,9 @@
#ifndef ZEND_GC_H
#define ZEND_GC_H
#include "zend_portability.h" // for BEGIN_EXTERN_C
#include "zend_types.h" // for GC_TYPE_INFO()
BEGIN_EXTERN_C()
typedef struct _zend_gc_status {