From: hno <> Date: Sat, 6 Apr 2002 22:08:05 +0000 (+0000) Subject: Ported to the revised chunked mempools API X-Git-Tag: SQUID_3_0_PRE1~1120 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a3565bbe184ac03a59849c73d35539be518f24e2;p=thirdparty%2Fsquid.git Ported to the revised chunked mempools API --- 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; }