From cbc774723a14b523e54552860e9cf93a85eb7869 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Sun, 1 Dec 2013 08:34:17 +0000 Subject: add info memory --- phpdbg_prompt.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'phpdbg_prompt.c') diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index b5a93a650a..2589a24732 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -769,11 +769,7 @@ PHPDBG_COMMAND(print) /* {{{ */ phpdbg_writeln("Functions\t%d", zend_hash_num_elements(EG(function_table))); phpdbg_writeln("Constants\t%d", zend_hash_num_elements(EG(zend_constants))); phpdbg_writeln("Included\t%d", zend_hash_num_elements(&EG(included_files))); - phpdbg_writeln( - "Memory\t\t%.3f/%.3f (kB)", - (float) (zend_memory_usage(1 TSRMLS_CC)/1024), - (float) (zend_memory_usage(0 TSRMLS_CC)/1024)); - + phpdbg_writeln(SEPARATE); } break; -- cgit v1.2.1