mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-7.2'
This commit is contained in:
commit
8582e53430
3 changed files with 20 additions and 0 deletions
12
.gdbinit
12
.gdbinit
|
@ -16,9 +16,11 @@ define ____executor_globals
|
||||||
end
|
end
|
||||||
set $eg = ((zend_executor_globals*) (*((void ***) $tsrm_ls))[executor_globals_id-1])
|
set $eg = ((zend_executor_globals*) (*((void ***) $tsrm_ls))[executor_globals_id-1])
|
||||||
set $cg = ((zend_compiler_globals*) (*((void ***) $tsrm_ls))[compiler_globals_id-1])
|
set $cg = ((zend_compiler_globals*) (*((void ***) $tsrm_ls))[compiler_globals_id-1])
|
||||||
|
set $eg_ptr = $eg
|
||||||
else
|
else
|
||||||
set $eg = executor_globals
|
set $eg = executor_globals
|
||||||
set $cg = compiler_globals
|
set $cg = compiler_globals
|
||||||
|
set $eg_ptr = (zend_executor_globals*) &executor_globals
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -289,6 +291,16 @@ define ____printzv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
define print_global_vars
|
||||||
|
____executor_globals
|
||||||
|
set $symtable = ((HashTable *)&($eg_ptr->symbol_table))
|
||||||
|
print_ht $symtable
|
||||||
|
end
|
||||||
|
|
||||||
|
document print_global_vars
|
||||||
|
Prints the global variables
|
||||||
|
end
|
||||||
|
|
||||||
define print_const_table
|
define print_const_table
|
||||||
set $ind = 1
|
set $ind = 1
|
||||||
printf "[%p] {\n", $arg0
|
printf "[%p] {\n", $arg0
|
||||||
|
|
|
@ -1860,6 +1860,10 @@ ldap.max_links = -1
|
||||||
; Prevent name collisions in chroot'ed environment.
|
; Prevent name collisions in chroot'ed environment.
|
||||||
;opcache.validate_root=0
|
;opcache.validate_root=0
|
||||||
|
|
||||||
|
; If specified, it produces opcode dumps for debugging different stages of
|
||||||
|
; optimizations.
|
||||||
|
;opcache.opt_debug_level=0
|
||||||
|
|
||||||
[curl]
|
[curl]
|
||||||
; A default value for the CURLOPT_CAINFO option. This is required to be an
|
; A default value for the CURLOPT_CAINFO option. This is required to be an
|
||||||
; absolute path.
|
; absolute path.
|
||||||
|
|
|
@ -1867,6 +1867,10 @@ ldap.max_links = -1
|
||||||
; Prevent name collisions in chroot'ed environment.
|
; Prevent name collisions in chroot'ed environment.
|
||||||
;opcache.validate_root=0
|
;opcache.validate_root=0
|
||||||
|
|
||||||
|
; If specified, it produces opcode dumps for debugging different stages of
|
||||||
|
; optimizations.
|
||||||
|
;opcache.opt_debug_level=0
|
||||||
|
|
||||||
[curl]
|
[curl]
|
||||||
; A default value for the CURLOPT_CAINFO option. This is required to be an
|
; A default value for the CURLOPT_CAINFO option. This is required to be an
|
||||||
; absolute path.
|
; absolute path.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue