]> granicus.if.org Git - php/commit
Merge branch 'PHP-7.0'
authorAnatol Belski <ab@php.net>
Tue, 29 Sep 2015 11:04:24 +0000 (13:04 +0200)
committerAnatol Belski <ab@php.net>
Tue, 29 Sep 2015 11:04:24 +0000 (13:04 +0200)
commitbc94d81e1cbcc79b0b7b27e5351d7d395bf21d93
treebd9a7165ee79a10fcde5b7604a678b2c8d292c1f
parent56f8396b661534f08dc4c57d9195bc226588af68
parentbfd26370682b5b90ea63a4bbf5a7a9c6ce3f5866
Merge branch 'PHP-7.0'

* PHP-7.0:
  fix test
  Ensure timeout tests wait for the entire specified duration
  Added zend_internal_function.reserved[] fields, to allow extensions keep additional associated information. We didn't have zend_internal_function.reserved[] in PHP5, but we always allocated space for zend_function union, and extensions were able to reuse zend_function.op_array.reserved[] even for internal function. Now this is not possible. And extensions have to use zend_function.op_array.reserved[] for user functions and zend_function.internal_function.reserved[] for internal.