From b757f941070c1ed21acc388ff834b123e9c40595 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 10 Nov 2019 12:45:45 +0000 Subject: Utils: ring: Remove unused code. --- utils/ring.h | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'utils') diff --git a/utils/ring.h b/utils/ring.h index b6731338a..55880a695 100644 --- a/utils/ring.h +++ b/utils/ring.h @@ -63,24 +63,6 @@ } \ element->r_next = element->r_prev = 0 -/** Find the element (by hostname) in the given ring, leave it in the - * provided element variable - */ -#define RING_FINDBYHOST(ring, element, hostname) \ - /*LOG("RING_FINDBYHOST(%s, %s)", #ring, hostname);*/ \ - if (ring) { \ - bool found = false; \ - element = ring; \ - do { \ - if (strcasecmp(element->host, hostname) == 0) { \ - found = true; \ - break; \ - } \ - element = element->r_next; \ - } while (element != ring); \ - if (!found) element = 0; \ - } else element = 0 - /** Find the element (by hostname) in the given ring, leave it in the * provided element variable */ @@ -112,19 +94,6 @@ } while (p != ring); \ } else sizevar = 0 -/** Count the number of elements in the ring which match the provided hostname */ -#define RING_COUNTBYHOST(ringtype, ring, sizevar, hostname) \ - /*LOG("RING_COUNTBYHOST(%s, %s)", #ring, hostname);*/ \ - if (ring) { \ - ringtype *p = ring; \ - sizevar = 0; \ - do { \ - if (strcasecmp(p->host, hostname) == 0) \ - sizevar++; \ - p = p->r_next; \ - } while (p != ring); \ - } else sizevar = 0 - /** Count the number of elements in the ring which match the provided lwc_hostname */ #define RING_COUNTBYLWCHOST(ringtype, ring, sizevar, lwc_hostname) \ /*LOG("RING_COUNTBYHOST(%s, %s)", #ring, hostname);*/ \ -- cgit v1.2.3