]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Ported to the revised chunked mempools API
authorhno <>
Sat, 6 Apr 2002 22:08:05 +0000 (22:08 +0000)
committerhno <>
Sat, 6 Apr 2002 22:08:05 +0000 (22:08 +0000)
src/fs/aufs/async_io.cc
src/fs/aufs/store_dir_aufs.cc

index f2b7368d6a83c49978bc3b249e7612200405b184..57aa3406ebf79ee8d505d383458ae835d0bfa45a 100644 (file)
@@ -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 <pete@demon.net>
@@ -102,7 +102,7 @@ aioInit(void)
 void
 aioDone(void)
 {
-    memPoolDestroy(squidaio_ctrl_pool);
+    memPoolDestroy(&squidaio_ctrl_pool);
     initialised = 0;
 }
 
index 4c2db315a7be17cca2c25f5e08b84f70dc12b29d..08966bf3b486cc04f3a4ec261fc68e32436dc25c 100644 (file)
@@ -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;
 }