]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
struct lock_ctrl_t and callback type SIH seem to be unused anywhere
authorwessels <>
Sat, 20 May 2006 05:10:20 +0000 (05:10 +0000)
committerwessels <>
Sat, 20 May 2006 05:10:20 +0000 (05:10 +0000)
in the code.

src/store.cc
src/typedefs.h

index a3b3dbc7163593245b893689984d62be39980a37..3fe269c2896a27e43748a5829a3943e6ced09a79 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.592 2006/05/19 20:22:56 wessels Exp $
+ * $Id: store.cc,v 1.593 2006/05/19 23:10:20 wessels Exp $
  *
  * DEBUG: section 20    Storage Manager
  * AUTHOR: Harvest Derived
@@ -81,15 +81,6 @@ const char *swapStatusStr[] =
         "SWAPOUT_DONE"
     };
 
-typedef struct lock_ctrl_t
-{
-    SIH *callback;
-    void *callback_data;
-    StoreEntry *e;
-}
-
-lock_ctrl_t;
-
 extern OBJH storeIOStats;
 
 
index bef3b33b3c998da0c464a2f5434a274cb19c938b..6281ff19270e6f7e0c56b012094e78dcfb0448f9 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: typedefs.h,v 1.184 2006/05/08 23:38:33 robertc Exp $
+ * $Id: typedefs.h,v 1.185 2006/05/19 23:10:21 wessels Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
@@ -278,7 +278,6 @@ typedef void STIOCB(void *their_data, int errflag, storeIOState *);
 typedef void STFNCB(void *their_data, int errflag, storeIOState *);
 typedef void STRCB(void *their_data, const char *buf, ssize_t len);
 
-typedef void SIH(storeIOState *, void *);      /* swap in */
 typedef int QS(const void *, const void *);    /* qsort */
 typedef void STABH(void *);
 typedef void ERCB(int fd, void *, size_t);