From 2771551e0dbfc9517ca6fd68f0db362434ceddbb Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 10 Jul 2004 21:04:23 +0000 Subject: [PATCH] I always wanted to rename the rather inconsistent memory pool modules. After the big library earthquake I caused with my unicode.h changes, this is the small fish, so let's go. --- lib/Makefile | 2 +- lib/{pool-str.c => mempool-str.c} | 2 +- lib/{pool.c => mempool.c} | 2 +- lib/{pools.h => mempool.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename lib/{pool-str.c => mempool-str.c} (97%) rename lib/{pool.c => mempool.c} (98%) rename lib/{pools.h => mempool.h} (100%) diff --git a/lib/Makefile b/lib/Makefile index 57ff42a8..381190a0 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,7 +5,7 @@ PROGS+=obj/lib/db-tool obj/lib/buckettool TESTS+=obj/lib/regex-ut LIBSH_MODS= \ - alloc alloc_str realloc pool pool-str \ + alloc alloc_str realloc mempool mempool-str \ mmap pagecache partmap hashfunc \ lists sorter bitsig \ log log-file proctitle \ diff --git a/lib/pool-str.c b/lib/mempool-str.c similarity index 97% rename from lib/pool-str.c rename to lib/mempool-str.c index 8dc6d237..065597d6 100644 --- a/lib/pool-str.c +++ b/lib/mempool-str.c @@ -8,7 +8,7 @@ */ #include "lib/lib.h" -#include "lib/pools.h" +#include "lib/mempool.h" #include #include diff --git a/lib/pool.c b/lib/mempool.c similarity index 98% rename from lib/pool.c rename to lib/mempool.c index 8b7c3725..e28512f6 100644 --- a/lib/pool.c +++ b/lib/mempool.c @@ -8,7 +8,7 @@ */ #include "lib/lib.h" -#include "lib/pools.h" +#include "lib/mempool.h" #include #include diff --git a/lib/pools.h b/lib/mempool.h similarity index 100% rename from lib/pools.h rename to lib/mempool.h -- 2.39.2