<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/Zend/zend_execute_API.c, branch php-4.0.4RC5</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC5'.</title>
<updated>2000-12-14T14:18:39+00:00</updated>
<author>
<name>SVN Migration</name>
<email>svn@php.net</email>
</author>
<published>2000-12-14T14:18:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9fc46d3a46144dc63fea49b8caeabfa4f3b5ac9b'/>
<id>9fc46d3a46144dc63fea49b8caeabfa4f3b5ac9b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>This commit was manufactured by cvs2svn to create branch 'php_4_0_4'.</title>
<updated>2000-12-02T02:09:18+00:00</updated>
<author>
<name>SVN Migration</name>
<email>svn@php.net</email>
</author>
<published>2000-12-02T02:09:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cd14d04924e2b2196dde2cf2bdb4b3cdf353b734'/>
<id>cd14d04924e2b2196dde2cf2bdb4b3cdf353b734</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix -a interactive mode (no idea how the previous commit got committed)</title>
<updated>2000-10-11T18:51:52+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-10-11T18:51:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=dee2d85e77614c910756d1621cc0fe6d2c28431b'/>
<id>dee2d85e77614c910756d1621cc0fe6d2c28431b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make compile_string() accept a description of the code</title>
<updated>2000-09-12T19:47:25+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-09-12T19:47:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5286b3971cbe7763f1f5aa918a5a909f61968fe8'/>
<id>5286b3971cbe7763f1f5aa918a5a909f61968fe8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix bug report by Andrei when using a method as a sort user function</title>
<updated>2000-08-22T18:35:42+00:00</updated>
<author>
<name>Andi Gutmans</name>
<email>andi@php.net</email>
</author>
<published>2000-08-22T18:35:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=207814916d5711d642067e3bef853145785bbd03'/>
<id>207814916d5711d642067e3bef853145785bbd03</id>
<content type='text'>
- parameter in usort() like functions

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- parameter in usort() like functions

</pre>
</div>
</content>
</entry>
<entry>
<title>The patch we promised - redesigned the compilation/execution API:</title>
<updated>2000-08-09T19:22:35+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-08-09T19:22:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c06692e9ec92bdbe22e7a4149b5365635c4ad950'/>
<id>c06692e9ec92bdbe22e7a4149b5365635c4ad950</id>
<content type='text'>
Advantages:
- Smaller memory footprint for the op arrays
- Slightly faster compilation times (due to saved erealloc() calls and faster zend_op
  initialization)
- include_once() &amp; require_once() share the same file list
- Consistency between include() and require() - this mostly means that return()
  works inside require()'d files just as it does in include() files (it used to
  be meaningless in require()'d files, most of the time (see below))
- Made require() consistent with itself.  Before, if the argument was not a constant
  string, require() took the include() behavior (with return()).
- Removed lots of duplicate code.
Bottom line - require() and include() are very similar now;  require() is simply an include()
which isn't allowed to fail.  Due to the erealloc() calls for large op arrays, require()
didn't end up being any faster than include() in the Zend engine.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Advantages:
- Smaller memory footprint for the op arrays
- Slightly faster compilation times (due to saved erealloc() calls and faster zend_op
  initialization)
- include_once() &amp; require_once() share the same file list
- Consistency between include() and require() - this mostly means that return()
  works inside require()'d files just as it does in include() files (it used to
  be meaningless in require()'d files, most of the time (see below))
- Made require() consistent with itself.  Before, if the argument was not a constant
  string, require() took the include() behavior (with return()).
- Removed lots of duplicate code.
Bottom line - require() and include() are very similar now;  require() is simply an include()
which isn't allowed to fail.  Due to the erealloc() calls for large op arrays, require()
didn't end up being any faster than include() in the Zend engine.

</pre>
</div>
</content>
</entry>
<entry>
<title>Unblock SIGPROF signal when starting timer.</title>
<updated>2000-07-03T16:53:39+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2000-07-03T16:53:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=91130b6a005166b1f8c1212121b5f5aa78a5b819'/>
<id>91130b6a005166b1f8c1212121b5f5aa78a5b819</id>
<content type='text'>
On Linux, this signal is blocked by default after first signal is run

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Linux, this signal is blocked by default after first signal is run

</pre>
</div>
</content>
</entry>
<entry>
<title>- Forgot ZEND_API</title>
<updated>2000-07-02T15:39:54+00:00</updated>
<author>
<name>Andi Gutmans</name>
<email>andi@php.net</email>
</author>
<published>2000-07-02T15:39:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b72a2738dc5e8a93abee775d780db46f3faefe05'/>
<id>b72a2738dc5e8a93abee775d780db46f3faefe05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>error_reporting fix</title>
<updated>2000-06-30T11:45:32+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-06-30T11:45:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fde2e61d544cdb2afe4594808b75ed6d174066cf'/>
<id>fde2e61d544cdb2afe4594808b75ed6d174066cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make max_execution_time work properly when set to 0 under Win32 (disable)</title>
<updated>2000-06-26T15:17:36+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-06-26T15:17:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=202b8100ab14260d63f83a274d9bd6a7b886b0c7'/>
<id>202b8100ab14260d63f83a274d9bd6a7b886b0c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
