aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/break.c
diff options
context:
space:
mode:
authorSatoshi Kinoshita <[email protected]>2010-04-08 12:17:12 +0900
committerBjörn Gustavsson <[email protected]>2010-04-08 10:10:52 +0200
commitac8f094ba44e70d8cce080b639787b33aa895772 (patch)
tree82918c6ee377d77c2882c58ed7c585d05535de28 /erts/emulator/beam/break.c
parent6fd69d6ca5cea3aae4afce7544ba6b729221885c (diff)
downloadotp-ac8f094ba44e70d8cce080b639787b33aa895772.tar.gz
otp-ac8f094ba44e70d8cce080b639787b33aa895772.tar.bz2
otp-ac8f094ba44e70d8cce080b639787b33aa895772.zip
system_info(procs): Fix the value for "OldHeap unused"
The value for "OldHeap unused" in the output of erlang:system_info(procs) and in crash dumps, was incorrectly calculated as the size of the entire old heap.
Diffstat (limited to 'erts/emulator/beam/break.c')
-rw-r--r--erts/emulator/beam/break.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/break.c b/erts/emulator/beam/break.c
index d93c031db2..dbe864f941 100644
--- a/erts/emulator/beam/break.c
+++ b/erts/emulator/beam/break.c
@@ -327,7 +327,7 @@ print_process_info(int to, void *to_arg, Process *p)
(unsigned)(OLD_HEND(p) - OLD_HEAP(p)) );
erts_print(to, to_arg, "Heap unused: %bpu\n", (p->hend - p->htop));
erts_print(to, to_arg, "OldHeap unused: %bpu\n",
- (OLD_HEAP(p) == NULL) ? 0 : (OLD_HEND(p) - OLD_HEAP(p)) );
+ (OLD_HEAP(p) == NULL) ? 0 : (OLD_HEND(p) - OLD_HTOP(p)) );
if (garbing) {
print_garb_info(to, to_arg, p);