blob: 10cc2ffce0e34dd673f2fddd4836079e05ef0395 [file] [log] [blame]
Willy Tarreauc2186022009-10-26 19:48:54 +01001/*
2 * Elastic Binary Trees - exported generic functions
Willy Tarreauf3bfede2011-07-25 11:38:17 +02003 * Version 6.0.6
4 * (C) 2002-2011 - Willy Tarreau <w@1wt.eu>
Willy Tarreauc2186022009-10-26 19:48:54 +01005 *
Willy Tarreauf3bfede2011-07-25 11:38:17 +02006 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation, version 2.1
9 * exclusively.
Willy Tarreauc2186022009-10-26 19:48:54 +010010 *
Willy Tarreauf3bfede2011-07-25 11:38:17 +020011 * This library is distributed in the hope that it will be useful,
Willy Tarreauc2186022009-10-26 19:48:54 +010012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Willy Tarreauf3bfede2011-07-25 11:38:17 +020013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
Willy Tarreauc2186022009-10-26 19:48:54 +010015 *
Willy Tarreauf3bfede2011-07-25 11:38:17 +020016 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Willy Tarreauc2186022009-10-26 19:48:54 +010019 */
20
Willy Tarreau5df32b52020-07-20 21:40:14 +020021#include <unistd.h>
Willy Tarreauc2186022009-10-26 19:48:54 +010022#include "ebtree.h"
23
24void eb_delete(struct eb_node *node)
25{
26 __eb_delete(node);
27}
28
29/* used by insertion primitives */
30REGPRM1 struct eb_node *eb_insert_dup(struct eb_node *sub, struct eb_node *new)
31{
32 return __eb_insert_dup(sub, new);
33}
Willy Tarreau1b7f58f2020-06-16 11:10:53 +020034
35/* compares memory blocks m1 and m2 for up to <len> bytes. Immediately stops at
36 * the first non-matching byte. It returns 0 on full match, non-zero otherwise.
37 * One byte will always be checked so this must not be called with len==0. It
38 * takes 2+5cy/B on x86_64 and is ~29 bytes long.
39 */
40int eb_memcmp(const void *m1, const void *m2, size_t len)
41{
42 const char *p1 = (const char *)m1 + len;
43 const char *p2 = (const char *)m2 + len;
44 ssize_t ofs = -len;
45 char diff;
46
47 do {
48 diff = p1[ofs] - p2[ofs];
49 } while (!diff && ++ofs);
50 return diff;
51}