Skip to content

Commit

Permalink
update ze83.h, ze83ts.h, zeWin83.h and zeWin83ts.h
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Feb 24, 2023
1 parent 9af6f45 commit 78b3997
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions headers/ze83.h
Original file line number Diff line number Diff line change
Expand Up @@ -1326,6 +1326,12 @@ typedef struct zend_atomic_bool_s
volatile bool value;
} zend_atomic_bool;

typedef struct _zend_call_stack
{
void *base;
size_t max_size;
} zend_call_stack;

struct _zend_executor_globals
{
zval uninitialized_zval;
Expand Down Expand Up @@ -1451,6 +1457,10 @@ struct _zend_executor_globals
zend_string *filename_override;
zend_long lineno_override;

zend_call_stack call_stack;
zend_long max_allowed_stack_size;
zend_ulong reserved_stack_size;

void *reserved[6];
};

Expand Down
12 changes: 12 additions & 0 deletions headers/ze83ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,8 @@ struct _zend_compiler_globals
uint32_t rtd_key_counter;

zend_stack short_circuiting_opnums;

uint32_t copied_functions_count;
};

typedef struct _zend_executor_globals zend_executor_globals;
Expand Down Expand Up @@ -1328,6 +1330,12 @@ typedef struct zend_atomic_bool_s
volatile bool value;
} zend_atomic_bool;

typedef struct _zend_call_stack
{
void *base;
size_t max_size;
} zend_call_stack;

struct _zend_executor_globals
{
zval uninitialized_zval;
Expand Down Expand Up @@ -1453,6 +1461,10 @@ struct _zend_executor_globals
zend_string *filename_override;
zend_long lineno_override;

zend_call_stack call_stack;
zend_long max_allowed_stack_size;
zend_ulong reserved_stack_size;

void *reserved[6];
};

Expand Down
10 changes: 10 additions & 0 deletions headers/zeWin83.h
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,12 @@ typedef struct zend_atomic_bool_s
volatile char value;
} zend_atomic_bool;

typedef struct _zend_call_stack
{
void *base;
size_t max_size;
} zend_call_stack;

struct _zend_executor_globals
{
zval uninitialized_zval;
Expand Down Expand Up @@ -1483,6 +1489,10 @@ struct _zend_executor_globals
zend_string *filename_override;
zend_long lineno_override;

zend_call_stack call_stack;
zend_long max_allowed_stack_size;
zend_ulong reserved_stack_size;

void *reserved[6];
};

Expand Down
12 changes: 12 additions & 0 deletions headers/zeWin83ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,8 @@ struct _zend_compiler_globals
uint32_t rtd_key_counter;

zend_stack short_circuiting_opnums;

uint32_t copied_functions_count;
};

typedef struct _zend_executor_globals zend_executor_globals;
Expand Down Expand Up @@ -1358,6 +1360,12 @@ typedef struct zend_atomic_bool_s
volatile char value;
} zend_atomic_bool;

typedef struct _zend_call_stack
{
void *base;
size_t max_size;
} zend_call_stack;

struct _zend_executor_globals
{
zval uninitialized_zval;
Expand Down Expand Up @@ -1485,6 +1493,10 @@ struct _zend_executor_globals
zend_string *filename_override;
zend_long lineno_override;

zend_call_stack call_stack;
zend_long max_allowed_stack_size;
zend_ulong reserved_stack_size;

void *reserved[6];
};

Expand Down

0 comments on commit 78b3997

Please sign in to comment.