~ubuntu-branches/ubuntu/intrepid/haproxy/intrepid

« back to all changes in this revision

Viewing changes to src/eb64tree.c

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Cornet
  • Date: 2008-03-09 21:30:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080309213029-8oupnrc607mg5uqw
Tags: 1.3.14.3-1
* New Upstream Version
* Add status argument support to init-script to conform to LSB.
* Cleanup pidfile after stop in init script. Init script return code fixups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Elastic Binary Trees - exported functions for operations on 64bit nodes.
 
3
 * (C) 2002-2007 - Willy Tarreau <w@1wt.eu>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
/* Consult eb64tree.h for more details about those functions */
 
21
 
 
22
#include <common/eb64tree.h>
 
23
 
 
24
REGPRM2 struct eb64_node *eb64_insert(struct eb_root *root, struct eb64_node *new)
 
25
{
 
26
        return __eb64_insert(root, new);
 
27
}
 
28
 
 
29
REGPRM2 struct eb64_node *eb64i_insert(struct eb_root *root, struct eb64_node *new)
 
30
{
 
31
        return __eb64i_insert(root, new);
 
32
}
 
33
 
 
34
REGPRM2 struct eb64_node *eb64_lookup(struct eb_root *root, u64 x)
 
35
{
 
36
        return __eb64_lookup(root, x);
 
37
}
 
38
 
 
39
REGPRM2 struct eb64_node *eb64i_lookup(struct eb_root *root, s64 x)
 
40
{
 
41
        return __eb64i_lookup(root, x);
 
42
}