From d5ec3193679a0c25e338c42b4143f76007f9cec7 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Tue, 25 Jul 2006 16:41:04 +0000 Subject: MFH: Update protos & arginfo for memory_get_usage() & memory_get_peak_usage() --- ext/standard/var.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/standard/var.c') diff --git a/ext/standard/var.c b/ext/standard/var.c index bfc61a0ea4..1292d6b536 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -909,7 +909,7 @@ PHP_FUNCTION(unserialize) /* }}} */ #if MEMORY_LIMIT -/* {{{ proto int memory_get_usage() +/* {{{ proto int memory_get_usage([real_usage]) Returns the allocated by PHP memory */ PHP_FUNCTION(memory_get_usage) { zend_bool real_usage = 0; @@ -921,7 +921,7 @@ PHP_FUNCTION(memory_get_usage) { RETURN_LONG(zend_memory_usage(real_usage TSRMLS_CC)); } /* }}} */ -/* {{{ proto int memory_get_peak_usage() +/* {{{ proto int memory_get_peak_usage([real_usage]) Returns the peak allocated by PHP memory */ PHP_FUNCTION(memory_get_peak_usage) { zend_bool real_usage = 0; -- cgit v1.2.1