]> granicus.if.org Git - php/commitdiff
Mark memory funcs with U.
authorAndrei Zmievski <andrei@php.net>
Fri, 6 Oct 2006 18:03:41 +0000 (18:03 +0000)
committerAndrei Zmievski <andrei@php.net>
Fri, 6 Oct 2006 18:03:41 +0000 (18:03 +0000)
ext/standard/var.c

index 8cf0af4007823a631d24e7cede64c5788071e94b..048b9356c297f40787f54ba00f25cc2d14147a22 100644 (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;