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:
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user