andrei Fri Oct 6 18:03:41 2006 UTC Modified files: /php-src/ext/standard var.c Log: Mark memory funcs with U. http://cvs.php.net/viewvc.cgi/php-src/ext/standard/var.c?r1=1.244&r2=1.245&diff_format=u Index: php-src/ext/standard/var.c diff -u php-src/ext/standard/var.c:1.244 php-src/ext/standard/var.c:1.245 --- php-src/ext/standard/var.c:1.244 Tue Aug 8 16:59:11 2006 +++ php-src/ext/standard/var.c Fri Oct 6 18:03:41 2006 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: var.c,v 1.244 2006/08/08 16:59:11 tony2001 Exp $ */ +/* $Id: var.c,v 1.245 2006/10/06 18:03:41 andrei Exp $ */ @@ -1149,7 +1149,7 @@ /* }}} */ #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 @@ 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;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php