1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00

Mark memory funcs with U.

This commit is contained in:
Andrei Zmievski
2006-10-06 18:03:41 +00:00
parent 5d4259ff85
commit d019da8692
+2 -2
View File
@@ -1149,7 +1149,7 @@ PHP_FUNCTION(unserialize)
/* }}} */
#if MEMORY_LIMIT
/* {{{ proto int memory_get_usage([real_usage])
/* {{{ proto int memory_get_usage([real_usage]) U
Returns the allocated by PHP memory */
PHP_FUNCTION(memory_get_usage) {
zend_bool real_usage = 0;
@@ -1161,7 +1161,7 @@ PHP_FUNCTION(memory_get_usage) {
RETURN_LONG(zend_memory_usage(real_usage TSRMLS_CC));
}
/* }}} */
/* {{{ proto int memory_get_peak_usage([real_usage])
/* {{{ proto int memory_get_peak_usage([real_usage]) U
Returns the peak allocated by PHP memory */
PHP_FUNCTION(memory_get_peak_usage) {
zend_bool real_usage = 0;