From b8601cce193a6b93c0d5233991591ffe1e68232c Mon Sep 17 00:00:00 2001 From: skidder Date: Sat, 28 Aug 2004 05:15:02 +0000 Subject: [PATCH] quick pool verification logic --- src/common/classes/alloc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/classes/alloc.h b/src/common/classes/alloc.h index 49fccc2ce9..a03f36f6e7 100644 --- a/src/common/classes/alloc.h +++ b/src/common/classes/alloc.h @@ -29,7 +29,7 @@ * Alex Peshkoff * added PermanentStorage and AutoStorage classes. * - * $Id: alloc.h,v 1.48 2004-08-22 21:28:19 skidder Exp $ + * $Id: alloc.h,v 1.49 2004-08-28 05:15:02 skidder Exp $ * */ @@ -342,7 +342,7 @@ public: void deallocate(void* block); // Check pool for internal consistent. When enabled, call is very expensive - bool verify_pool(); + bool verify_pool(bool fast_checks_only = false); // Print out pool contents. This is debugging routine void print_contents(FILE*, bool = false);