From a3565bbe184ac03a59849c73d35539be518f24e2 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sat, 6 Apr 2002 22:08:05 +0000 Subject: [PATCH] Ported to the revised chunked mempools API --- src/fs/aufs/async_io.cc | 4 ++-- src/fs/aufs/store_dir_aufs.cc | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fs/aufs/async_io.cc b/src/fs/aufs/async_io.cc index f2b7368d6a..57aa3406eb 100644 --- a/src/fs/aufs/async_io.cc +++ b/src/fs/aufs/async_io.cc @@ -1,6 +1,6 @@ /* - * $Id: async_io.cc,v 1.11 2002/01/10 07:46:06 adrian Exp $ + * $Id: async_io.cc,v 1.12 2002/04/06 15:08:05 hno Exp $ * * DEBUG: section 32 Asynchronous Disk I/O * AUTHOR: Pete Bentley @@ -102,7 +102,7 @@ aioInit(void) void aioDone(void) { - memPoolDestroy(squidaio_ctrl_pool); + memPoolDestroy(&squidaio_ctrl_pool); initialised = 0; } diff --git a/src/fs/aufs/store_dir_aufs.cc b/src/fs/aufs/store_dir_aufs.cc index 4c2db315a7..08966bf3b4 100644 --- a/src/fs/aufs/store_dir_aufs.cc +++ b/src/fs/aufs/store_dir_aufs.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir_aufs.cc,v 1.42 2002/04/01 21:53:21 hno Exp $ + * $Id: store_dir_aufs.cc,v 1.43 2002/04/06 15:08:05 hno Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -1687,9 +1687,9 @@ static void storeAufsDirDone(void) { aioDone(); - memPoolDestroy(squidaio_state_pool); - memPoolDestroy(aufs_qread_pool); - memPoolDestroy(aufs_qwrite_pool); + memPoolDestroy(&squidaio_state_pool); + memPoolDestroy(&aufs_qread_pool); + memPoolDestroy(&aufs_qwrite_pool); asyncufs_initialised = 0; } -- 2.47.2