From e8b68d6b3eb2181f08600ae8d336dc71fc5ff120 Mon Sep 17 00:00:00 2001 From: fitzsim Date: Mon, 24 Jun 2002 23:05:06 +0000 Subject: [PATCH] * libc/search/db_local.h: New file. * libc/include/db.h: Remove. * libc/search/Makefile.am (LIB_SOURCES): Add db_local.h. * libc/search/hash.c (MIN,MAX): Add macros. Change to "db_local.h". * libc/search/hash_bigkey.c: Likewise. * libc/search/hash_buf.c: Likewise. * libc/search/hash_func.c: Likewise. * libc/search/hash_log2.c: Likewise. * libc/search/hash_page.c: Likewise. --- newlib/ChangeLog | 15 ++++++++++++++- newlib/libc/search/Makefile.am | 1 + newlib/libc/search/Makefile.in | 1 + newlib/libc/{include/db.h => search/db_local.h} | 0 newlib/libc/search/hash.c | 6 +++++- newlib/libc/search/hash_bigkey.c | 6 +++++- newlib/libc/search/hash_buf.c | 6 +++++- newlib/libc/search/hash_func.c | 2 +- newlib/libc/search/hash_log2.c | 2 +- newlib/libc/search/hash_page.c | 2 +- 10 files changed, 34 insertions(+), 7 deletions(-) rename newlib/libc/{include/db.h => search/db_local.h} (100%) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 115d68eed1..772b268e38 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,4 +1,17 @@ -Mon Jun 24 21:17:02 2002 J"orn Rennecke +2002-06-24 Thomas Fitzsimmons + + * libc/search/db_local.h: New file. + * libc/include/db.h: Remove. + * libc/search/Makefile.am (LIB_SOURCES): Add db_local.h. + * libc/search/hash.c (MIN,MAX): Add macros. Change to + "db_local.h". + * libc/search/hash_bigkey.c: Likewise. + * libc/search/hash_buf.c: Likewise. + * libc/search/hash_func.c: Likewise. + * libc/search/hash_log2.c: Likewise. + * libc/search/hash_page.c: Likewise. + +2002-06-24 J"orn Rennecke * libc/machine/sh/strcpy.S: New file. * libc/machine/sh/Makefile.am (lib_a_SOURCES): Add rule for it. diff --git a/newlib/libc/search/Makefile.am b/newlib/libc/search/Makefile.am index 35aa511f99..b888a9de1e 100644 --- a/newlib/libc/search/Makefile.am +++ b/newlib/libc/search/Makefile.am @@ -6,6 +6,7 @@ INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) LIB_SOURCES = \ bsearch.c \ + db_local.h \ extern.h \ hash.c \ hash.h \ diff --git a/newlib/libc/search/Makefile.in b/newlib/libc/search/Makefile.in index 6a67280cef..e4fb8d6844 100644 --- a/newlib/libc/search/Makefile.in +++ b/newlib/libc/search/Makefile.in @@ -110,6 +110,7 @@ INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) LIB_SOURCES = \ bsearch.c \ + db_local.h \ extern.h \ hash.c \ hash.h \ diff --git a/newlib/libc/include/db.h b/newlib/libc/search/db_local.h similarity index 100% rename from newlib/libc/include/db.h rename to newlib/libc/search/db_local.h diff --git a/newlib/libc/search/hash.c b/newlib/libc/search/hash.c index 498ee3fccf..5bd4fb77e5 100644 --- a/newlib/libc/search/hash.c +++ b/newlib/libc/search/hash.c @@ -53,7 +53,7 @@ static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94"; #include #endif -#include +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" @@ -77,6 +77,10 @@ static void swap_header(HTAB *); static void swap_header_copy(HASHHDR *, HASHHDR *); #endif +/* Macros for min/max. */ +#define MIN(a,b) (((a)<(b))?(a):(b)) +#define MAX(a,b) (((a)>(b))?(a):(b)) + /* Fast arithmetic, relying on powers of 2, */ #define MOD(x, y) ((x) & ((y) - 1)) diff --git a/newlib/libc/search/hash_bigkey.c b/newlib/libc/search/hash_bigkey.c index 8f8c58d109..821acd0782 100644 --- a/newlib/libc/search/hash_bigkey.c +++ b/newlib/libc/search/hash_bigkey.c @@ -40,6 +40,10 @@ static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; #endif /* LIBC_SCCS and not lint */ #include +/* Macros for min/max. */ +#define MIN(a,b) (((a)<(b))?(a):(b)) +#define MAX(a,b) (((a)>(b))?(a):(b)) + /* * PACKAGE: hash * DESCRIPTION: @@ -69,7 +73,7 @@ static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; #include #endif -#include +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" diff --git a/newlib/libc/search/hash_buf.c b/newlib/libc/search/hash_buf.c index 33cdb7c206..3979bcdd57 100644 --- a/newlib/libc/search/hash_buf.c +++ b/newlib/libc/search/hash_buf.c @@ -66,7 +66,7 @@ static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; #include #endif -#include +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" @@ -93,6 +93,10 @@ static BUFHEAD *newbuf(HTAB *, __uint32_t, BUFHEAD *); #define MRU_INSERT(B) BUF_INSERT((B), &hashp->bufhead) #define LRU_INSERT(B) BUF_INSERT((B), LRU) +/* Macros for min/max. */ +#define MIN(a,b) (((a)<(b))?(a):(b)) +#define MAX(a,b) (((a)>(b))?(a):(b)) + /* * We are looking for a buffer with address "addr". If prev_bp is NULL, then * address is a bucket index. If prev_bp is not NULL, then it points to the diff --git a/newlib/libc/search/hash_func.c b/newlib/libc/search/hash_func.c index deeb21e603..52cb31ccb0 100644 --- a/newlib/libc/search/hash_func.c +++ b/newlib/libc/search/hash_func.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)hash_func.c 8.2 (Berkeley) 2/21/94"; #include #include -#include +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" diff --git a/newlib/libc/search/hash_log2.c b/newlib/libc/search/hash_log2.c index bbcddb0c79..9414f26c22 100644 --- a/newlib/libc/search/hash_log2.c +++ b/newlib/libc/search/hash_log2.c @@ -41,7 +41,7 @@ static char sccsid[] = "@(#)hash_log2.c 8.2 (Berkeley) 5/31/94"; #include -#include +#include "db_local.h" __uint32_t __log2(num) diff --git a/newlib/libc/search/hash_page.c b/newlib/libc/search/hash_page.c index a92dfa6e75..896aee8d52 100644 --- a/newlib/libc/search/hash_page.c +++ b/newlib/libc/search/hash_page.c @@ -69,7 +69,7 @@ static char sccsid[] = "@(#)hash_page.c 8.7 (Berkeley) 8/16/94"; #include #endif -#include +#include "db_local.h" #include "hash.h" #include "page.h" #include "extern.h" -- 2.11.0