?? Oct 2003, PHP 5 Beta 3
- Added new functions:
. dba_key_split() to split inifile keys in an array. (Marcus)
- . nanosleep() signal safe sleep (Magnus, Ilia)
+ . time_nanosleep() signal safe sleep (Magnus, Ilia)
- Fixed bug #26072 (--disable-libxml does not work). (Jani)
- Fixed bug #26083 (Non-working write support in ext/dom). (Ilia)
- Fixed bug #24394 (Serializing cross-referenced objects causes segfault).
PHP_FE(sleep, NULL)
PHP_FE(usleep, NULL)
#if HAVE_NANOSLEEP
- PHP_FE(nanosleep, NULL)
+ PHP_FE(time_nanosleep, NULL)
#endif
PHP_FE(time, NULL)
PHP_FE(mktime, NULL)
/* }}} */
#if HAVE_NANOSLEEP
-/* {{{ proto mixed nanosleep(long seconds, long nanoseconds)
+/* {{{ proto mixed time_nanosleep(long seconds, long nanoseconds)
Delay for a number of seconds and nano seconds */
-PHP_FUNCTION(nanosleep)
+PHP_FUNCTION(time_nanosleep)
{
long tv_sec, tv_nsec;
struct timespec php_req, php_rem;
PHP_FUNCTION(sleep);
PHP_FUNCTION(usleep);
#if HAVE_NANOSLEEP
-PHP_FUNCTION(nanosleep);
+PHP_FUNCTION(time_nanosleep);
#endif
PHP_FUNCTION(flush);
PHP_FUNCTION(ip2long);