diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-12-01 08:34:17 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-12-01 08:34:17 +0000 |
commit | cbc774723a14b523e54552860e9cf93a85eb7869 (patch) | |
tree | ca6c942263fa9417b1de6867819777585fdda0d7 /phpdbg_prompt.c | |
parent | 8a826dc07b0f6e4eb1e8402e24705517c0ac5788 (diff) | |
download | php-git-cbc774723a14b523e54552860e9cf93a85eb7869.tar.gz |
add info memory
Diffstat (limited to 'phpdbg_prompt.c')
-rw-r--r-- | phpdbg_prompt.c | 6 |
1 files changed, 1 insertions, 5 deletions
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; |