(Paul Hudson, Derick)
- Fixed bug with raw_post_data not getting set (Brian)
- Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
+- Fixed bug #29873 (No defines around pcntl_*priority definitions). (Derick)
- Fixed bug #29844 (SOAP doesn't return the result of a valid SOAP request).
(Dmitry)
- Fixed bug #29842 (soapclient return null value). (Dmitry)
PHP_FE(pcntl_wstopsig, NULL)
PHP_FE(pcntl_exec, NULL)
PHP_FE(pcntl_alarm, NULL)
+#ifdef HAVE_GETPRIORITY
PHP_FE(pcntl_getpriority, NULL)
+#endif
+#ifdef HAVE_SETPRIORITY
PHP_FE(pcntl_setpriority, NULL)
+#endif
{NULL, NULL, NULL}
};
PHP_FUNCTION(pcntl_wstopsig);
PHP_FUNCTION(pcntl_signal);
PHP_FUNCTION(pcntl_exec);
+#ifdef HAVE_GETPRIORITY
PHP_FUNCTION(pcntl_getpriority);
+#endif
+#ifdef HAVE_SETPRIORITY
PHP_FUNCTION(pcntl_setpriority);
+#endif
ZEND_BEGIN_MODULE_GLOBALS(pcntl)
HashTable php_signal_table;