summaryrefslogtreecommitdiff
path: root/sal/rtl/source
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas.kanapickas@gmail.com>2010-10-18 16:25:37 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-18 16:25:47 +0100
commitc189268e0ab3ec33c02c5dbabfd31b37e0b1f5ab (patch)
tree1a67096d0b39a58883f5eaabd041f187ae33b5f3 /sal/rtl/source
parent17a52bb6a8d830b99605b0ecad84e50cac452a28 (diff)
remove non-compiled code
Diffstat (limited to 'sal/rtl/source')
-rw-r--r--sal/rtl/source/alloc_arena.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/sal/rtl/source/alloc_arena.c b/sal/rtl/source/alloc_arena.c
index 1a74c7e36cae..0e7b174aa055 100644
--- a/sal/rtl/source/alloc_arena.c
+++ b/sal/rtl/source/alloc_arena.c
@@ -353,21 +353,6 @@ rtl_arena_hash_rescale (
old_size, new_size
);
-#if 0 /* DBG */
- int i;
- for (i = 0; i < arena->m_hash_size; i++)
- {
- sal_Size k = 0; rtl_arena_segment_type ** segpp = &(arena->m_hash_table[i]);
- while (*segpp)
- {
- k += 1;
- segpp = &((*segpp)->m_fnext);
- }
- fprintf(stdout, "%d, ", k);
- }
- fprintf(stdout, "\n");
-#endif /* DBG */
-
arena->m_hash_table = new_table;
arena->m_hash_size = new_size;
arena->m_hash_shift = highbit(arena->m_hash_size) - 1;