Add arginfo for sys_getloadavg()

iUpdate arginfo for base64_decode()
This commit is contained in:
Hannes Magnusson 2006-06-26 22:19:04 +00:00
parent 0cce3777ea
commit 29ca8007ee

View File

@ -932,6 +932,12 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_import_request_variables, 0, 0, 1)
ZEND_ARG_INFO(0, types) ZEND_ARG_INFO(0, types)
ZEND_ARG_INFO(0, prefix) ZEND_ARG_INFO(0, prefix)
ZEND_END_ARG_INFO() ZEND_END_ARG_INFO()
#ifdef HAVE_GETLOADAVG
static
ZEND_BEGIN_ARG_INFO(arginfo_sys_getloadavg, 0)
ZEND_END_ARG_INFO()
#endif
/* }}} */ /* }}} */
/* {{{ assert.c */ /* {{{ assert.c */
static static
@ -952,8 +958,9 @@ ZEND_BEGIN_ARG_INFO(arginfo_base64_encode, 0)
ZEND_END_ARG_INFO() ZEND_END_ARG_INFO()
static static
ZEND_BEGIN_ARG_INFO(arginfo_base64_decode, 0) ZEND_BEGIN_ARG_INFO_EX(arginfo_base64_decode, 0, 0, 1)
ZEND_ARG_INFO(0, str) ZEND_ARG_INFO(0, str)
ZEND_ARG_INFO(0, strict)
ZEND_END_ARG_INFO() ZEND_END_ARG_INFO()
/* }}} */ /* }}} */
@ -3344,7 +3351,7 @@ zend_function_entry basic_functions[] = {
PHP_FE(getopt, arginfo_getopt) PHP_FE(getopt, arginfo_getopt)
#endif #endif
#ifdef HAVE_GETLOADAVG #ifdef HAVE_GETLOADAVG
PHP_FE(sys_getloadavg, NULL) PHP_FE(sys_getloadavg, arginfo_sys_getloadavg)
#endif #endif
#ifdef HAVE_GETTIMEOFDAY #ifdef HAVE_GETTIMEOFDAY
PHP_FE(microtime, arginfo_microtime) PHP_FE(microtime, arginfo_microtime)