summaryrefslogtreecommitdiff
path: root/libhurd-mm/exceptions.c
diff options
context:
space:
mode:
authorneal <neal>2007-12-12 23:34:25 +0000
committerneal <neal>2007-12-12 23:34:25 +0000
commitcfd71a54a12a3203a48caed7558815ca7ea332d8 (patch)
tree1d18d385c1b474bccd877bbcc844b89f9d5833df /libhurd-mm/exceptions.c
parent2bc0ce8855c99d9c05a75b53498abc02e8188d6b (diff)
2007-12-13 Neal H. Walfield <neal@gnu.org>
* exceptions.c (exception_page_cleanup): Remove debugging cruft.
Diffstat (limited to 'libhurd-mm/exceptions.c')
-rw-r--r--libhurd-mm/exceptions.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libhurd-mm/exceptions.c b/libhurd-mm/exceptions.c
index 71eb16c..fa6da30 100644
--- a/libhurd-mm/exceptions.c
+++ b/libhurd-mm/exceptions.c
@@ -321,18 +321,10 @@ exception_page_cleanup (struct exception_page *exception_page)
struct exception_frame *f;
struct exception_frame *prev = exception_page->exception_stack_bottom;
- int count = 0;
while ((f = prev))
{
prev = f->prev;
hurd_slab_dealloc (&exception_frame_slab, f);
- count ++;
}
-
- assertx (count == exception_page->frame_count,
- "count: %d, exception_page->frame_count: %d",
- count, exception_page->frame_count);
-
- debug (0, "Freed %d frames", count);
}