File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 66
66
*
67
67
* @see http://researcher.watson.ibm.com/researcher/files/us-bacon/Bacon01Concurrent.pdf
68
68
*/
69
- #include "zend.h"
70
- #include "zend_API.h"
71
- #include "zend_fibers.h"
69
+
70
+ #include "zend_gc.h"
71
+ #include "zend_alloc.h" // for ZEND_MM_OVERHEAD
72
+ #include "zend_fibers.h" // for zend_fiber_switch_block()
73
+ #include "zend_globals.h" // for struct _zend_executor_globals
74
+ #include "zend_globals_macros.h" // for EG()
75
+ #include "zend_objects.h" // for zend_objects_destroy_object()
76
+ #include "zend.h" // for zend_error()
72
77
73
78
#ifndef GC_BENCH
74
79
# define GC_BENCH 0
Original file line number Diff line number Diff line change 20
20
#ifndef ZEND_GC_H
21
21
#define ZEND_GC_H
22
22
23
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
24
+ #include "zend_types.h" // for GC_TYPE_INFO()
25
+
23
26
BEGIN_EXTERN_C ()
24
27
25
28
typedef struct _zend_gc_status {
You can’t perform that action at this time.
0 commit comments