diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-10 01:13:21 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-10 01:13:21 +0200 |
commit | dfb0bf24b35f5cabd062958117b6bd198d61b445 (patch) | |
tree | 3a3b9d64e42cb84ea3c3baeefd010a27dad58d03 /sys/lib | |
parent | 177c175fdaa0718ee3479560be4366810993c702 (diff) |
acid: fix dumptree() acid function to work in kernel debug, update malloc.acid and pool.acid files
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/acid/pool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/acid/pool b/sys/lib/acid/pool index e6604347b..5c862ad46 100644 --- a/sys/lib/acid/pool +++ b/sys/lib/acid/pool @@ -246,9 +246,9 @@ gendumptree(f, in, s) loop 1,in do {print(" ");} print(s, " size ", f.size\D, " left ", f.left\X, " right ", f.right\X, "\n"); - if f.left != 0 && f.left < 0x7FFFFFFF then + if f.left != 0 then gendumptree(f.left, in+1, "l"); - if f.right != 0 && f.right < 0x7FFFFFFF then + if f.right != 0 then gendumptree(f.right, in+1, "r"); } |