]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent, debug
authorwessels <>
Wed, 18 Jun 1997 10:03:42 +0000 (10:03 +0000)
committerwessels <>
Wed, 18 Jun 1997 10:03:42 +0000 (10:03 +0000)
src/cbdata.cc

index 10089967b358b2c495b7d63e8aa9add84834c92f..4dc6513f28f20f36dd7f4bbf61ea0f3d1edafc33 100644 (file)
@@ -5,10 +5,10 @@
 static hash_table *htable = NULL;
 
 typedef struct _cbdata {
-       void *key;
-       struct _cbdata *next;
-       int valid;
-       int locks;
+    void *key;
+    struct _cbdata *next;
+    int valid;
+    int locks;
 } cbdata;
 
 static HASHCMP cbdata_cmp;
@@ -17,108 +17,108 @@ static HASHHASH cbdata_hash;
 static int
 cbdata_cmp(const char *p1, const char *p2)
 {
-       return p1 - p2;
+    return p1 - p2;
 }
 
 static unsigned int
 cbdata_hash(const char *p, unsigned int mod)
 {
-       return ((unsigned long) p >> 8) % mod;
+    return ((unsigned long) p >> 8) % mod;
 }
 
 
 void
 cbdataInit(void)
 {
-       debug(45,1)("cbdataInit\n");
-       htable = hash_create(cbdata_cmp, 1<<8, cbdata_hash);
+    debug(45, 3) ("cbdataInit\n");
+    htable = hash_create(cbdata_cmp, 1 << 8, cbdata_hash);
 }
 
 void
 cbdataAdd(void *p)
 {
-       cbdata *c;
-       assert(p);
-       debug(45,1)("cbdataAdd: %p\n", p);
-       assert(hash_lookup(htable, p) == NULL);
-       c = xcalloc(1, sizeof(cbdata));
-       c->key = p;
-       c->valid = 1;
-       hash_join(htable, (hash_link *) c);
+    cbdata *c;
+    assert(p);
+    debug(45, 3) ("cbdataAdd: %p\n", p);
+    assert(hash_lookup(htable, p) == NULL);
+    c = xcalloc(1, sizeof(cbdata));
+    c->key = p;
+    c->valid = 1;
+    hash_join(htable, (hash_link *) c);
 }
 
 void
 cbdataFree(void *p)
 {
-       cbdata *c = (cbdata *) hash_lookup(htable, p);
-       assert(p);
-       debug(45,1)("cbdataFree: %p\n", p);
-       assert(c != NULL);
-       c->valid = 0;
-       if (c->locks) {
-               debug(45,1)("cbdataFree: %p has locks, not freeing\n", p);
-               return;
-       }
-       hash_remove_link(htable, (hash_link *) c);
-       xfree(c);
-       debug(45,1)("cbdataFree: freeing %p\n", p);
-       xfree(p);
+    cbdata *c = (cbdata *) hash_lookup(htable, p);
+    assert(p);
+    debug(45, 3) ("cbdataFree: %p\n", p);
+    assert(c != NULL);
+    c->valid = 0;
+    if (c->locks) {
+       debug(45, 3) ("cbdataFree: %p has locks, not freeing\n", p);
+       return;
+    }
+    hash_remove_link(htable, (hash_link *) c);
+    xfree(c);
+    debug(45, 3) ("cbdataFree: freeing %p\n", p);
+    xfree(p);
 }
 
 void
 cbdataLock(void *p)
 {
-       cbdata *c;
-       if (p == NULL)
-               return;
-       c = (cbdata *) hash_lookup(htable, p);
-       debug(45,1)("cbdataLock: %p\n", p);
-       assert(c != NULL);
-       c->locks++;
+    cbdata *c;
+    if (p == NULL)
+       return;
+    c = (cbdata *) hash_lookup(htable, p);
+    debug(45, 3) ("cbdataLock: %p\n", p);
+    assert(c != NULL);
+    c->locks++;
 }
 
 void
 cbdataUnlock(void *p)
 {
-       cbdata *c;
-       if (p == NULL)
-               return;
-       c = (cbdata *) hash_lookup(htable, p);
-       debug(45,1)("cbdataUnlock: %p\n", p);
-       assert(c != NULL);
-       assert(c->locks > 0);
-       c->locks--;
-       if (c->valid)
-               return;
-       hash_remove_link(htable, (hash_link *) c);
-       xfree(c);
-       xfree(p);
+    cbdata *c;
+    if (p == NULL)
+       return;
+    c = (cbdata *) hash_lookup(htable, p);
+    debug(45, 3) ("cbdataUnlock: %p\n", p);
+    assert(c != NULL);
+    assert(c->locks > 0);
+    c->locks--;
+    if (c->valid)
+       return;
+    hash_remove_link(htable, (hash_link *) c);
+    xfree(c);
+    xfree(p);
 }
 
 int
 cbdataValid(void *p)
 {
-       cbdata *c;
-       if (p == NULL)
-               return 0;
-       c = (cbdata *) hash_lookup(htable, p);
-       debug(45,1)("cbdataValid: %p\n", p);
-       assert(c != NULL);
-       assert(c->locks > 0);
-       return c->valid;
+    cbdata *c;
+    if (p == NULL)
+       return 0;
+    c = (cbdata *) hash_lookup(htable, p);
+    debug(45, 3) ("cbdataValid: %p\n", p);
+    assert(c != NULL);
+    assert(c->locks > 0);
+    return c->valid;
 }
 
 
 void
-cbdataDump(StoreEntry *sentry)
+cbdataDump(StoreEntry * sentry)
 {
-       hash_link *hptr;
-       cbdata *c;
-       for (hptr = hash_first(htable); hptr; hptr = hash_next(htable)) {
-               c = (cbdata *) hptr;
-               storeAppendPrintf(sentry, "%20p %10s %d locks\n",
-                       c->key,
-                       c->valid ? "VALID" : "NOT VALID",
-                       c->locks);
-       }
+    hash_link *hptr;
+    cbdata *c;
+    for (hptr = hash_first(htable); hptr; hptr = hash_next(htable)) {
+       c = (cbdata *) hptr;
+       storeAppendPrintf(sentry, "%20p %10s %d locks\n",
+           c->key,
+           c->valid ? "VALID" : "NOT VALID",
+           c->locks);
+    }
 }